Skip to content

Commit

Permalink
v3.4.9 (#1870)
Browse files Browse the repository at this point in the history
## [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
  • Loading branch information
lrljoe authored Aug 21, 2024
1 parent 6fe1c57 commit 1fd8bb2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

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

## [v3.4.9] - 2024-08-21
### Bug Fixes
- 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
- Fix superfluous bulk actions tr > by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1868

## [v3.4.8] - 2024-08-18
### New Features
- Add an event dispatch for Filter Was Set when filterComponents is updated by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1861
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/table/tr/bulk-actions.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class="btn btn-primary btn-sm"
</div>
</template>

<<template x-if="selectedItems.length !== paginationTotalItemCount && !selectAllStatus">
<template x-if="selectedItems.length !== paginationTotalItemCount && !selectAllStatus">
<div wire:key="{{ $tableName }}-some-selected">
<span>
@lang('You have selected')
Expand Down
2 changes: 1 addition & 1 deletion src/Traits/ComponentUtilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ trait ComponentUtilities

protected array $extraWithAvgs = [];

protected bool $useComputedProperties = true;
protected bool $useComputedProperties = false;

/**
* Set any configuration options
Expand Down

0 comments on commit 1fd8bb2

Please sign in to comment.