fix(ui): typo on storage delete modal (#11541)

This commit is contained in:
ShadowArcanist
2026-09-03 18:12:06 +02:00
committed by GitHub
parent 2fc73bc357
commit 76414296a6
+2 -2
View File
@@ -308,10 +308,10 @@ class FileStorage extends Component
{
return view('livewire.project.service.file-storage', [
'directoryDeletionCheckboxes' => [
['id' => 'permanently_delete', 'label' => 'The selected directory and all its contents will be permantely deleted form the server.'],
['id' => 'permanently_delete', 'label' => 'The selected directory and all its contents will be permanently deleted from the server.'],
],
'fileDeletionCheckboxes' => [
['id' => 'permanently_delete', 'label' => 'The selected file will be permanently deleted form the server.'],
['id' => 'permanently_delete', 'label' => 'The selected file will be permanently deleted from the server.'],
],
'hostFileDeletionCheckboxes' => [
['id' => 'permanently_delete', 'label' => 'Only the mount configuration will be removed. The host file will not be deleted.'],