From b63aaad6455ccbf684fee92eeb3a4b70f6137d00 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 8 Apr 2024 11:16:25 +0200 Subject: [PATCH] Update warning message for multiple domains in ServiceApplicationView.php --- app/Livewire/Project/Service/ServiceApplicationView.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/Project/Service/ServiceApplicationView.php b/app/Livewire/Project/Service/ServiceApplicationView.php index 0986987f9..ca9723a3a 100644 --- a/app/Livewire/Project/Service/ServiceApplicationView.php +++ b/app/Livewire/Project/Service/ServiceApplicationView.php @@ -70,7 +70,7 @@ class ServiceApplicationView extends Component $this->application->save(); updateCompose($this->application); if (str($this->application->fqdn)->contains(',')) { - $this->dispatch('warning', 'Some services do not support multiple domains, which can lead to problems and is NOT RECOMMENDED.'); + $this->dispatch('warning', 'Some services do not support multiple domains, which can lead to problems and is NOT RECOMMENDED.

Only use multiple domains if you know what you are doing.'); } else { $this->dispatch('success', 'Service saved.'); }