We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f86c8b commit 40add52Copy full SHA for 40add52
resources/views/tailwind/includes/table.blade.php
@@ -96,7 +96,7 @@ class="rounded border-gray-300 text-indigo-600 shadow-sm transition duration-150
96
@forelse ($rows as $index => $row)
97
<x-livewire-tables::table.row
98
wire:loading.class.delay="opacity-50 dark:bg-gray-900 dark:opacity-60"
99
- wire:key="table-row-{{ $row->{$primaryKey} }}"
+ wire:key="table-row-{{ md5(rand()) }}-{{ $row->{\Rappasoft\LaravelLivewireTables\Utilities\ColumnUtilities::parseField($primaryKey)} }}"
100
wire:sortable.item="{{ $row->{$primaryKey} }}"
101
:reordering="$reordering"
102
:url="method_exists($this, 'getTableRowUrl') ? $this->getTableRowUrl($row) : ''"
0 commit comments