fix environment select
This commit is contained in:
parent
4c21807b7a
commit
5f1adc98d8
2 changed files with 5 additions and 6 deletions
|
|
@ -15,7 +15,7 @@ class EnvironmentSelect extends Component
|
|||
|
||||
public function mount()
|
||||
{
|
||||
$this->selectedEnvironment = request()->route('environment_name');
|
||||
$this->selectedEnvironment = request()->route('environment_uuid');
|
||||
$this->project_uuid = request()->route('project_uuid');
|
||||
}
|
||||
|
||||
|
|
@ -28,7 +28,7 @@ public function updatedSelectedEnvironment($value)
|
|||
} else {
|
||||
return redirect()->route('project.resource.index', [
|
||||
'project_uuid' => $this->project_uuid,
|
||||
'environment_name' => $value,
|
||||
'environment_uuid' => $value,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
<x-forms.select wire:model.live="selectedEnvironment">
|
||||
<option value="edit">Create / Edit</option>
|
||||
<option disabled>-----</option>
|
||||
@foreach ($environments as $environment)
|
||||
<option value="{{ $environment->name }}">{{ $environment->name }}
|
||||
</option>
|
||||
<option value="{{ $environment->uuid }}">{{ $environment->name }}</option>
|
||||
@endforeach
|
||||
<option disabled>-----</option>
|
||||
<option value="edit">Create / Edit</option>
|
||||
</x-forms.select>
|
||||
|
|
|
|||
Loading…
Reference in a new issue