Skip to content

Commit 59eaa7b

Browse files
authored
Merge pull request #2088 from rappasoft/development
v3.5.5
2 parents 9c27700 + b026e05 commit 59eaa7b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

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

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

5+
## [v3.5.5] - 2024-11-22
6+
### Bug Fixes
7+
- Fix date range filter default value by @edwinvdpol in https://github.com/rappasoft/laravel-livewire-tables/pull/2082
8+
59
## [v3.5.4] - 2024-11-21
610
### Bug Fixes
711
- Allow JSON and PHP type localisations by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/2071

src/Views/Filters/DateRangeFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ protected function validateDateFormat(array $returnedValues, string $dateFormat)
133133

134134
public function getDefaultValue(): array
135135
{
136-
return [];
136+
return $this->getFilterDefaultValue();
137137
}
138138

139139
public function getFilterDefaultValue(): array

0 commit comments

Comments
 (0)