This commit is contained in:
Andras Bacsai 2023-06-08 08:47:22 +02:00
parent e37260f809
commit 88d1028950
4 changed files with 3 additions and 5 deletions

View File

@ -264,7 +264,7 @@ const magicActions = [{
{
id: 3,
name: 'Create: Private Key',
tags: 'key,private,ssh',
tags: 'private,key,ssh,new,create',
icon: 'key',
new: true,
sequence: ['main', 'redirect']

View File

@ -10,8 +10,6 @@
<span class="label-text">
@if ($label)
{{ $label }}
@else
{{ $id }}
@endif
@if ($required)
<span class="text-warning">*</span>

View File

@ -12,7 +12,7 @@
<x-forms.input id="user" label="User" required />
<x-forms.input type="number" id="port" label="Port" required />
</div>
<x-forms.select label="Private Key" wire:model.defer="private_key_id">
<x-forms.select label="Private Key" id="private_key_id">
<option disabled>Select a private key</option>
@foreach ($private_keys as $key)
@if ($loop->first)

View File

@ -1,5 +1,5 @@
<div class="w-64 -mt-9">
<x-forms.select wire:model="selectedTeamId" class="pr-0 select-xs ">
<x-forms.select id="selectedTeamId" class="pr-0 select-xs ">
<option value="default" disabled selected>Switch team</option>
@foreach (auth()->user()->teams as $team)
<option value="{{ $team->id }}">{{ $team->name }}</option>