Skip to content

Commit 294069a

Browse files
committed
Tweak for Td Plain
1 parent 742bdc8 commit 294069a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

resources/views/components/table/tr/footer.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
>
77
{{-- Adds a Column For Bulk Actions--}}
88
@if (!$this->bulkActionsAreEnabled() || !$this->hasBulkActions())
9-
<x-livewire-tables::table.td.plain :colIndex="bulkactions" x-cloak x-show="currentlyReorderingStatus" wire:key="{{ $tableName . '-footer-bulkactions-1' }}" />
9+
<x-livewire-tables::table.td.plain :colIndex="'bulkactions'" x-cloak x-show="currentlyReorderingStatus" wire:key="{{ $tableName . '-footer-bulkactions-1' }}" />
1010
@elseif ($this->bulkActionsAreEnabled() && $this->hasBulkActions())
11-
<x-livewire-tables::table.td.plain :colIndex="bulkactions" wire:key="{{ $tableName . '-footer-bulkactions-2' }}" />
11+
<x-livewire-tables::table.td.plain :colIndex="'bulkactions'" wire:key="{{ $tableName . '-footer-bulkactions-2' }}" />
1212
@endif
1313

1414
{{-- Adds a Column If Collapsing Columns Exist --}}

resources/views/components/table/tr/secondary-header.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
wire:key="{{ $tableName .'-secondary-header' }}"
66
>
77
{{-- TODO: Remove --}}
8-
<x-livewire-tables::table.td.plain :colIndex="bulkactions" x-cloak x-show="currentlyReorderingStatus" :displayMinimisedOnReorder="true" wire:key="{{ $tableName .'-header-test' }}" />
8+
<x-livewire-tables::table.td.plain :colIndex="'bulkactions'" x-cloak x-show="currentlyReorderingStatus" :displayMinimisedOnReorder="true" wire:key="{{ $tableName .'-header-test' }}" />
99

1010
@if ($this->showBulkActionsSections)
11-
<x-livewire-tables::table.td.plain :colIndex="bulkactions" :displayMinimisedOnReorder="true" wire:key="{{ $tableName .'-header-hasBulkActions' }}" />
11+
<x-livewire-tables::table.td.plain :colIndex="'bulkactions'" :displayMinimisedOnReorder="true" wire:key="{{ $tableName .'-header-hasBulkActions' }}" />
1212
@endif
1313

1414
@if ($this->collapsingColumnsAreEnabled() && $this->hasCollapsedColumns())

0 commit comments

Comments
 (0)