From 2bddb09384f0e05cfd7475f0826a511349645837 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 6 Nov 2023 09:27:00 +0100 Subject: [PATCH] fix: set labels on generate domain --- app/Http/Livewire/Project/Application/General.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Livewire/Project/Application/General.php b/app/Http/Livewire/Project/Application/General.php index c9c0c77ee..703c85b92 100644 --- a/app/Http/Livewire/Project/Application/General.php +++ b/app/Http/Livewire/Project/Application/General.php @@ -152,7 +152,7 @@ class General extends Component $fqdn = generateFqdn($server, $this->application->uuid); $this->application->fqdn = $fqdn; $this->application->save(); - $this->emit('success', 'Application settings updated!'); + $this->updatedApplicationFqdn(); } } public function resetDefaultLabels($showToaster = true)