From 4c887a31267fd0362ed4e314a007d6a10fadc812 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 5 Jun 2025 13:33:02 +0200 Subject: [PATCH] fix(database-heading): simplify stop database message for clarity --- app/Livewire/Project/Database/Heading.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/Project/Database/Heading.php b/app/Livewire/Project/Database/Heading.php index f0e9a2f47..a9783d911 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.'); StopDatabase::dispatch($this->database, false, $this->docker_cleanup); } catch (\Exception $e) { $this->dispatch('error', $e->getMessage());