Update warning message for multiple domains in ServiceApplicationView.php

This commit is contained in:
Andras Bacsai 2024-04-08 11:16:25 +02:00
parent 2c41b5d4fb
commit b63aaad645

View File

@ -70,7 +70,7 @@ public function submit()
$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.<br><br>Only use multiple domains if you know what you are doing.');
} else {
$this->dispatch('success', 'Service saved.');
}