chore: Update button text for container connection form

This commit is contained in:
Andras Bacsai
2024-09-13 12:37:32 +02:00
parent 85cce4e453
commit 07893b432b
2 changed files with 4 additions and 3 deletions

View File

@@ -29,7 +29,8 @@
@if (data_get($this->parameters, 'application_uuid')) @if (data_get($this->parameters, 'application_uuid'))
@foreach ($containers as $container) @foreach ($containers as $container)
<option value="{{ data_get($container, 'container.Names') }}"> <option value="{{ data_get($container, 'container.Names') }}">
{{ data_get($container, 'container.Names') }} ({{ data_get($container, 'server.name') }}) {{ data_get($container, 'container.Names') }}
({{ data_get($container, 'server.name') }})
</option> </option>
@endforeach @endforeach
@elseif(data_get($this->parameters, 'service_uuid')) @elseif(data_get($this->parameters, 'service_uuid'))
@@ -44,7 +45,7 @@
</option> </option>
@endif @endif
</x-forms.select> </x-forms.select>
<x-forms.button type="submit">Start Connection</x-forms.button> <x-forms.button type="submit">Connect</x-forms.button>
</form> </form>
@else @else
<div class="pt-4">No containers are not running.</div> <div class="pt-4">No containers are not running.</div>

View File

@@ -17,7 +17,7 @@
@endforeach @endforeach
@endforeach @endforeach
</x-forms.select> </x-forms.select>
<x-forms.button type="submit">Start Connection</x-forms.button> <x-forms.button type="submit">Connect</x-forms.button>
</form> </form>
<livewire:project.shared.terminal /> <livewire:project.shared.terminal />
</div> </div>