File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
4
4
5
5
## [ Unreleased]
6
6
7
+ ### Changed
8
+
9
+ - Fixed default version of livewire - https://github.com/rappasoft/laravel-livewire-tables/issues/486
10
+
7
11
## [ 1.16.0] - 2021-09-26
8
12
9
13
### Added
Original file line number Diff line number Diff line change 19
19
],
20
20
"require" : {
21
21
"php" : " ^7.4|^8.0" ,
22
- "livewire/livewire" : " ^2.6.5 " ,
22
+ "livewire/livewire" : " ^2.0 " ,
23
23
"spatie/laravel-package-tools" : " ^1.4.3" ,
24
24
"illuminate/contracts" : " ^8.0"
25
25
},
Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ public function getFilter(string $filter)
231
231
return $ this ->hasIntegerKeys ($ filter ) ? (int )$ this ->filters [$ filter ] : trim ($ this ->filters [$ filter ]);
232
232
}
233
233
234
- if (is_string ($ this ->filters [$ filter ])) {
234
+ if (is_string ($ this ->filters [$ filter ])) {
235
235
return trim ($ this ->filters [$ filter ]);
236
236
}
237
237
You can’t perform that action at this time.
0 commit comments