File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
10
10
11
11
- Added support for MorphOne relationships - https://github.com/rappasoft/laravel-livewire-tables/pull/844
12
12
- Added MultiSelectDropdownFilter - https://github.com/rappasoft/laravel-livewire-tables/pull/1011
13
+ - FilterSlideDown - Ability to set Default to Open or Closed - https://github.com/rappasoft/laravel-livewire-tables/pull/1017
13
14
14
15
### Changed
15
16
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ public function can_get_component_filters(): void
64
64
/** @test */
65
65
public function can_get_component_filter_count (): void
66
66
{
67
- $ this ->assertEquals (1 , $ this ->basicTable ->getFiltersCount ());
67
+ $ this ->assertEquals (2 , $ this ->basicTable ->getFiltersCount ());
68
68
}
69
69
70
70
/** @test */
@@ -111,7 +111,7 @@ public function can_set_filter_defaults(): void
111
111
112
112
$ this ->basicTable ->setFilterDefaults ();
113
113
114
- $ this ->assertSame (['breed ' => []], $ this ->basicTable ->getAppliedFilters ());
114
+ $ this ->assertSame (['breed ' => [], ' species ' => [] ], $ this ->basicTable ->getAppliedFilters ());
115
115
}
116
116
117
117
/** @test */
You can’t perform that action at this time.
0 commit comments