diff --git a/resources/views/components/modal-confirmation.blade.php b/resources/views/components/modal-confirmation.blade.php index eefb7d547..71b5d370b 100644 --- a/resources/views/components/modal-confirmation.blade.php +++ b/resources/views/components/modal-confirmation.blade.php @@ -17,7 +17,7 @@
Select the actions you want to perform:
@foreach($checkboxes as $index => $checkbox) - + @endforeach - {{-- - Continue - --}} @else
diff --git a/resources/views/livewire/project/shared/danger.blade.php b/resources/views/livewire/project/shared/danger.blade.php index c9bbc2ed0..722d75c99 100644 --- a/resources/views/livewire/project/shared/danger.blade.php +++ b/resources/views/livewire/project/shared/danger.blade.php @@ -16,10 +16,10 @@ ['id' => 'docker_cleanup', 'model' => 'docker_cleanup', 'label' => 'Run Docker cleanup (remove builder cache and unused images)?'] ]" :checkboxActions="[ - 'delete_volumes' => $delete_volumes ? 'All associated volumes of this resource will be deleted.' : null, - 'delete_connected_networks' => $delete_connected_networks ? 'All connected networks of this resource will be deleted (predefined networks are not deleted).' : null, - 'delete_configurations' => $delete_configurations ? 'All configuration files of this resource will be deleted on the server.' : null, - 'docker_cleanup' => $docker_cleanup ? 'Docker cleanup will be executed which removes builder cache and unused images.' : null + 'delete_volumes' => 'All associated volumes of this resource will be deleted.', + 'delete_connected_networks' => 'All connected networks of this resource will be deleted (predefined networks are not deleted).', + 'delete_configurations' => 'All configuration files of this resource will be deleted on the server.', + 'docker_cleanup' => 'Docker cleanup will be executed which removes builder cache and unused images.' ]" > This resource will be deleted. It is not reversible. Please think again.