Skip to content

Commit 35ba311

Browse files
committed
Fix
1 parent aef0c97 commit 35ba311

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

resources/views/bootstrap-4/includes/table.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<x-livewire-tables::bs4.table.footer />
102102
@endif
103103

104-
@if ($bulkActionsEnabled && count($bulkActions))
104+
@if ($bulkActionsEnabled && count($this->bulkActions))
105105
<x-livewire-tables::bs4.table.footer />
106106
@endif
107107

resources/views/bootstrap-5/includes/table.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class="form-check-input"
103103
<x-livewire-tables::bs5.table.footer />
104104
@endif
105105

106-
@if ($bulkActionsEnabled && count($bulkActions))
106+
@if ($bulkActionsEnabled && count($this->bulkActions))
107107
<x-livewire-tables::bs5.table.footer />
108108
@endif
109109

resources/views/tailwind/includes/table.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class="rounded border-gray-300 text-indigo-600 shadow-sm transition duration-150
119119
<x-livewire-tables::table.footer />
120120
@endif
121121

122-
@if ($bulkActionsEnabled && count($bulkActions))
122+
@if ($bulkActionsEnabled && count($this->bulkActions))
123123
<x-livewire-tables::table.footer />
124124
@endif
125125

0 commit comments

Comments
 (0)