fix
This commit is contained in:
parent
e37260f809
commit
88d1028950
@ -264,7 +264,7 @@ const magicActions = [{
|
|||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
name: 'Create: Private Key',
|
name: 'Create: Private Key',
|
||||||
tags: 'key,private,ssh',
|
tags: 'private,key,ssh,new,create',
|
||||||
icon: 'key',
|
icon: 'key',
|
||||||
new: true,
|
new: true,
|
||||||
sequence: ['main', 'redirect']
|
sequence: ['main', 'redirect']
|
||||||
|
@ -10,8 +10,6 @@
|
|||||||
<span class="label-text">
|
<span class="label-text">
|
||||||
@if ($label)
|
@if ($label)
|
||||||
{{ $label }}
|
{{ $label }}
|
||||||
@else
|
|
||||||
{{ $id }}
|
|
||||||
@endif
|
@endif
|
||||||
@if ($required)
|
@if ($required)
|
||||||
<span class="text-warning">*</span>
|
<span class="text-warning">*</span>
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<x-forms.input id="user" label="User" required />
|
<x-forms.input id="user" label="User" required />
|
||||||
<x-forms.input type="number" id="port" label="Port" required />
|
<x-forms.input type="number" id="port" label="Port" required />
|
||||||
</div>
|
</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>
|
<option disabled>Select a private key</option>
|
||||||
@foreach ($private_keys as $key)
|
@foreach ($private_keys as $key)
|
||||||
@if ($loop->first)
|
@if ($loop->first)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<div class="w-64 -mt-9">
|
<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>
|
<option value="default" disabled selected>Switch team</option>
|
||||||
@foreach (auth()->user()->teams as $team)
|
@foreach (auth()->user()->teams as $team)
|
||||||
<option value="{{ $team->id }}">{{ $team->name }}</option>
|
<option value="{{ $team->id }}">{{ $team->name }}</option>
|
||||||
|
Loading…
Reference in New Issue
Block a user