Merge pull request #4428 from kleintonno/patch-1

fix deploy key selection in applications source menu
This commit is contained in:
🏔️ Peak 2024-11-28 14:24:45 +01:00 committed by GitHub
commit 505f382fa7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -43,7 +43,7 @@ class="dark:text-warning">{{ $privateKeyName }}</span>
<h4 class="py-2 ">Select another Private Key</h4>
<div class="flex flex-wrap gap-2">
@foreach ($privateKeys as $key)
<x-forms.button wire:click.defer="setPrivateKey('{{ $key->id }}')">{{ $key->name }}
<x-forms.button wire:click="setPrivateKey('{{ $key->id }}')">{{ $key->name }}
</x-forms.button>
@endforeach
</div>