diff --git a/app/Livewire/Project/Application/General.php b/app/Livewire/Project/Application/General.php index 6b2f07dc3..58dbed11e 100644 --- a/app/Livewire/Project/Application/General.php +++ b/app/Livewire/Project/Application/General.php @@ -116,6 +116,9 @@ class General extends Component } $this->isConfigurationChanged = $this->application->isConfigurationChanged(); $this->customLabels = $this->application->parseContainerLabels(); + if (!$this->customLabels) { + $this->resetDefaultLabels(false); + } $this->initialDockerComposeLocation = $this->application->docker_compose_location; $this->checkLabelUpdates(); } @@ -209,6 +212,9 @@ class General extends Component if ($this->ports_exposes !== $this->application->ports_exposes) { $this->resetDefaultLabels(false); } + if (!$this->customLabels) { + $this->resetDefaultLabels(false); + } if (data_get($this->application, 'build_pack') === 'dockerimage') { $this->validate([ 'application.docker_registry_image_name' => 'required', diff --git a/config/sentry.php b/config/sentry.php index 84bd36a64..9296ac156 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -7,7 +7,7 @@ return [ // The release version of your application // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) - 'release' => '4.0.0-beta.177', + 'release' => '4.0.0-beta.178', // When left empty or `null` the Laravel environment will be used 'environment' => config('app.env'), diff --git a/config/version.php b/config/version.php index 2fa0950f8..661773b8d 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@