This commit is contained in:
Andras Bacsai
2023-05-15 21:48:36 +02:00
parent 6910f9c5c7
commit 114647810b
8 changed files with 12 additions and 15 deletions

View File

@@ -16,8 +16,7 @@
<h1>Select a private key</h1>
<div class="flex">
@foreach ($private_keys as $key)
<div class="w-32 box" :class="{ 'bg-coollabs': {{ $private_key_id == $key->id }} }"
wire:click.defer.prevent="setPrivateKey('{{ $key->id }}')">
<div class="w-32 box" wire:click.defer.prevent="setPrivateKey('{{ $key->id }}')">
{{ $key->name }}
</div>
@endforeach