Skip to content

Commit 0201904

Browse files
authored
Merge pull request #2266 from pascalberski/development
Prevent InvalidCharacterError by correctly rendering x-cloak attribute
2 parents 4a9c4ed + 98f5f24 commit 0201904

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/views/components/tools/filter-pills.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div {{ $attributes->merge([
44
55
'wire:loading.class' => $this->displayFilterPillsWhileLoading ? '' : 'invisible',
6-
'x-cloak',
6+
'x-cloak' => '',
77
])
88
->class([
99
'mb-4 px-4 md:p-0' => $isTailwind,
@@ -27,4 +27,4 @@
2727
@endtableloop
2828

2929
<x-livewire-tables::tools.filter-pills.buttons.reset-all />
30-
</div>
30+
</div>

0 commit comments

Comments
 (0)