diff --git a/app/Livewire/Server/Proxy.php b/app/Livewire/Server/Proxy.php index 5825cf3fb..98dd75861 100644 --- a/app/Livewire/Server/Proxy.php +++ b/app/Livewire/Server/Proxy.php @@ -26,7 +26,7 @@ class Proxy extends Component public function proxyStatusUpdated() { - $this->server->refresh(); + $this->dispatch('refresh')->self(); } public function change_proxy() diff --git a/bootstrap/helpers/shared.php b/bootstrap/helpers/shared.php index 0911aa118..47dd8b284 100644 --- a/bootstrap/helpers/shared.php +++ b/bootstrap/helpers/shared.php @@ -1249,7 +1249,6 @@ function parseDockerComposeFile(Service|Application $resource, bool $isNew = fal // Collect/create/update networks if ($serviceNetworks->count() > 0) { foreach ($serviceNetworks as $networkName => $networkDetails) { - ray($networkDetails); $networkExists = $topLevelNetworks->contains(function ($value, $key) use ($networkName) { return $value == $networkName || $key == $networkName; }); diff --git a/resources/views/livewire/project/application/general.blade.php b/resources/views/livewire/project/application/general.blade.php index aa104267b..26fdd935b 100644 --- a/resources/views/livewire/project/application/general.blade.php +++ b/resources/views/livewire/project/application/general.blade.php @@ -45,9 +45,11 @@ @endif @if ($application->build_pack === 'dockercompose') +