Skip to content

Commit

Permalink
Merge pull request #2088 from rappasoft/development
Browse files Browse the repository at this point in the history
v3.5.5
  • Loading branch information
lrljoe authored Nov 22, 2024
2 parents 9c27700 + b026e05 commit 59eaa7b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## [v3.5.5] - 2024-11-22
### Bug Fixes
- Fix date range filter default value by @edwinvdpol in https://github.com/rappasoft/laravel-livewire-tables/pull/2082

## [v3.5.4] - 2024-11-21
### Bug Fixes
- Allow JSON and PHP type localisations by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/2071
Expand Down
2 changes: 1 addition & 1 deletion src/Views/Filters/DateRangeFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ protected function validateDateFormat(array $returnedValues, string $dateFormat)

public function getDefaultValue(): array
{
return [];
return $this->getFilterDefaultValue();
}

public function getFilterDefaultValue(): array
Expand Down

0 comments on commit 59eaa7b

Please sign in to comment.