diff --git a/resources/ts/filters/filter-dropdown.ts b/resources/ts/filters/filter-dropdown.ts index e4921f1..3c5a641 100644 --- a/resources/ts/filters/filter-dropdown.ts +++ b/resources/ts/filters/filter-dropdown.ts @@ -35,8 +35,8 @@ class Dropdown { ( checkbox ) => checkbox.checked ); - return ! this.initialState.every( - ( value, index ) => value === currentState[ index ] + return this.initialState.some( + ( value, index ) => value !== currentState[ index ] ); }