diff --git a/app/Livewire/Project/Service/Configuration.php b/app/Livewire/Project/Service/Configuration.php index 8ad6750a3..fa44fdfbf 100644 --- a/app/Livewire/Project/Service/Configuration.php +++ b/app/Livewire/Project/Service/Configuration.php @@ -76,6 +76,12 @@ public function check_status() { try { GetContainersStatus::run($this->service->server); + $this->service->applications->each(function ($application) { + $application->refresh(); + }); + $this->service->databases->each(function ($database) { + $database->refresh(); + }); $this->dispatch('$refresh'); } catch (\Exception $e) { return handleError($e, $this);