From b0e33eb59df326c167373fa525a2ba8f57dbe8c2 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Fri, 30 May 2025 14:04:43 +0200 Subject: [PATCH] fix(application-management): improve stop messages for application, database, and service to enhance clarity and formatting --- app/Livewire/Project/Application/Heading.php | 2 +- app/Livewire/Project/Database/Heading.php | 2 +- resources/views/livewire/project/service/heading.blade.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 @@