From 0fc8aa969813ae57ba58732cc42c5e78549e33d0 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 15 Jun 2023 14:52:43 +0200 Subject: [PATCH] fix --- app/Http/Livewire/Project/Application/Deploy.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Http/Livewire/Project/Application/Deploy.php b/app/Http/Livewire/Project/Application/Deploy.php index fabb70d9d..1e18772f4 100644 --- a/app/Http/Livewire/Project/Application/Deploy.php +++ b/app/Http/Livewire/Project/Application/Deploy.php @@ -37,7 +37,7 @@ class Deploy extends Component protected function setDeploymentUuid() { $this->deploymentUuid = new Cuid2(7); - $this->parameters['deployment_uuid'] = $this->deployment_uuid; + $this->parameters['deployment_uuid'] = $this->deploymentUuid; } public function deploy(bool $force = false, bool|null $debug = null) { @@ -49,13 +49,13 @@ class Deploy extends Component queue_application_deployment( application_id: $this->application->id, - deployment_uuid: $this->deployment_uuid, + deployment_uuid: $this->deploymentUuid, force_rebuild: $force, ); return redirect()->route('project.application.deployment', [ 'project_uuid' => $this->parameters['project_uuid'], 'application_uuid' => $this->parameters['application_uuid'], - 'deployment_uuid' => $this->deployment_uuid, + 'deployment_uuid' => $this->deploymentUuid, 'environment_name' => $this->parameters['environment_name'], ]); }