add missing wire:key

This commit is contained in:
Andras Bacsai 2023-05-05 13:50:29 +02:00
parent 26da4eadb0
commit 80e915c015

View File

@ -1,7 +1,7 @@
<div class="flex flex-col gap-2">
<h3>Persistent Storages</h3>
@forelse ($application->persistentStorages as $storage)
<livewire:project.application.storages.show :storage="$storage" />
<livewire:project.application.storages.show wire:key="storage-{{ $storage->id }}" :storage="$storage" />
@empty
<p>There are no persistent storage attached for this application.</p>
@endforelse