fix
This commit is contained in:
parent
e37260f809
commit
88d1028950
@ -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']
|
||||
|
@ -10,8 +10,6 @@
|
||||
<span class="label-text">
|
||||
@if ($label)
|
||||
{{ $label }}
|
||||
@else
|
||||
{{ $id }}
|
||||
@endif
|
||||
@if ($required)
|
||||
<span class="text-warning">*</span>
|
||||
|
@ -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)
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user