fix: deployment cancel/debug buttons

This commit is contained in:
Andras Bacsai 2023-07-06 08:27:22 +02:00
parent 4f98cef7cb
commit 37d645c00e

View File

@ -16,8 +16,8 @@ class DeploymentNavbar extends Component
protected $listeners = ['deploymentFinished']; protected $listeners = ['deploymentFinished'];
public ApplicationDeploymentQueue $application_deployment_queue; public ApplicationDeploymentQueue $application_deployment_queue;
private Application $application; public Application $application;
private Server $server; public Server $server;
public bool $is_debug_enabled = false; public bool $is_debug_enabled = false;
public function mount() public function mount()
@ -66,4 +66,4 @@ public function cancel()
return general_error_handler(err: $e, that: $this); return general_error_handler(err: $e, that: $this);
} }
} }
} }