diff --git a/app/Http/Livewire/Server/Proxy/Status.php b/app/Http/Livewire/Server/Proxy/Status.php index 0c5f274b5..674dd623d 100644 --- a/app/Http/Livewire/Server/Proxy/Status.php +++ b/app/Http/Livewire/Server/Proxy/Status.php @@ -14,6 +14,9 @@ class Status extends Component public int $numberOfPolls = 0; protected $listeners = ['proxyStatusUpdated', 'startProxyPolling']; + public function mount() { + $this->checkProxy(); + } public function startProxyPolling() { $this->checkProxy(); diff --git a/resources/views/livewire/server/proxy/status.blade.php b/resources/views/livewire/server/proxy/status.blade.php index e3184d061..95e1b4a50 100644 --- a/resources/views/livewire/server/proxy/status.blade.php +++ b/resources/views/livewire/server/proxy/status.blade.php @@ -1,6 +1,6 @@