Skip to content

Commit 1fd8bb2

Browse files
authored
v3.4.9 (#1870)
## [v3.4.9] - 2024-08-21 ### Bug Fixes - Default UseComputedProperties to False to allow previously published views to work by default by @lrljoe in #1869 - Fix superfluous bulk actions tr > by @lrljoe in #1868
1 parent 6fe1c57 commit 1fd8bb2

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to `laravel-livewire-tables` will be documented in this file
44

5+
## [v3.4.9] - 2024-08-21
6+
### Bug Fixes
7+
- Default UseComputedProperties to False to allow previously published views to work by default by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1869
8+
- Fix superfluous bulk actions tr > by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1868
9+
510
## [v3.4.8] - 2024-08-18
611
### New Features
712
- Add an event dispatch for Filter Was Set when filterComponents is updated by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1861

resources/views/components/table/tr/bulk-actions.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class="btn btn-primary btn-sm"
9797
</div>
9898
</template>
9999

100-
<<template x-if="selectedItems.length !== paginationTotalItemCount && !selectAllStatus">
100+
<template x-if="selectedItems.length !== paginationTotalItemCount && !selectAllStatus">
101101
<div wire:key="{{ $tableName }}-some-selected">
102102
<span>
103103
@lang('You have selected')

src/Traits/ComponentUtilities.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ trait ComponentUtilities
4545

4646
protected array $extraWithAvgs = [];
4747

48-
protected bool $useComputedProperties = true;
48+
protected bool $useComputedProperties = false;
4949

5050
/**
5151
* Set any configuration options

0 commit comments

Comments
 (0)