refactor(ui): simplify container selection form in execute-container-command view
This commit is contained in:
@@ -20,7 +20,6 @@
|
|||||||
@if (count($containers) === 0)
|
@if (count($containers) === 0)
|
||||||
<div>No containers are running or terminal access is disabled on this server.</div>
|
<div>No containers are running or terminal access is disabled on this server.</div>
|
||||||
@else
|
@else
|
||||||
@foreach ($containers as $container)
|
|
||||||
<form class="w-full flex gap-2 items-end" wire:submit="$dispatchSelf('connectToContainer')">
|
<form class="w-full flex gap-2 items-end" wire:submit="$dispatchSelf('connectToContainer')">
|
||||||
<x-forms.select label="Container" id="container" required wire:model="selected_container">
|
<x-forms.select label="Container" id="container" required wire:model="selected_container">
|
||||||
@foreach ($containers as $container)
|
@foreach ($containers as $container)
|
||||||
@@ -36,7 +35,6 @@
|
|||||||
<x-forms.button :disabled="$isConnecting"
|
<x-forms.button :disabled="$isConnecting"
|
||||||
type="submit">{{ $isConnecting ? 'Connecting...' : 'Connect' }}</x-forms.button>
|
type="submit">{{ $isConnecting ? 'Connecting...' : 'Connect' }}</x-forms.button>
|
||||||
</form>
|
</form>
|
||||||
@endforeach
|
|
||||||
<div class="mx-auto w-full">
|
<div class="mx-auto w-full">
|
||||||
<livewire:project.shared.terminal />
|
<livewire:project.shared.terminal />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user