Skip to content

Commit

Permalink
Merge pull request #13593 from smiliyas/fix/table-polling-with-reorde…
Browse files Browse the repository at this point in the history
…ring

Fix: avoid table polling while reordering
  • Loading branch information
danharrin committed Jul 17, 2024
2 parents 1defb64 + 991e25d commit 0b1f9de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tables/resources/views/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ class="fi-ta-header-toolbar flex items-center justify-between gap-x-4 px-4 py-3
@endif

<div
@if ($pollingInterval = $getPollingInterval())
@if ((! $isReordering) && ($pollingInterval = $getPollingInterval()))
wire:poll.{{ $pollingInterval }}
@endif
@class([
Expand Down

0 comments on commit 0b1f9de

Please sign in to comment.