diff --git a/app/Livewire/Project/Application/Heading.php b/app/Livewire/Project/Application/Heading.php index 06b29fad1..9fd4da68a 100644 --- a/app/Livewire/Project/Application/Heading.php +++ b/app/Livewire/Project/Application/Heading.php @@ -110,7 +110,7 @@ class Heading extends Component public function stop() { - $this->dispatch('info', 'Gracefully stopping application, it could take a while depending on the application.'); + $this->dispatch('info', 'Gracefully stopping application.
It could take a while depending on the application.'); StopApplication::dispatch($this->application, false, $this->docker_cleanup); } diff --git a/app/Livewire/Project/Database/Heading.php b/app/Livewire/Project/Database/Heading.php index e11402844..f0e9a2f47 100644 --- a/app/Livewire/Project/Database/Heading.php +++ b/app/Livewire/Project/Database/Heading.php @@ -64,7 +64,7 @@ class Heading extends Component public function stop() { try { - $this->dispatch('info', 'Gracefully stopping database, it could take a while depending on the size of the database.'); + $this->dispatch('info', 'Gracefully stopping database.
It could take a while depending on the size of the database.'); StopDatabase::dispatch($this->database, false, $this->docker_cleanup); } catch (\Exception $e) { $this->dispatch('error', $e->getMessage()); diff --git a/resources/views/livewire/project/service/heading.blade.php b/resources/views/livewire/project/service/heading.blade.php index c23ebb714..05d70f41f 100644 --- a/resources/views/livewire/project/service/heading.blade.php +++ b/resources/views/livewire/project/service/heading.blade.php @@ -136,7 +136,7 @@