Skip to content

Commit

Permalink
try making multi-filters default to all (getredash#3)
Browse files Browse the repository at this point in the history
* try making multi-filters default to all

haven't tested

* Update query-result.js

* Update query-result.js
  • Loading branch information
stevenhao authored Dec 16, 2021
1 parent 1e5ddf4 commit fa30a58
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions client/app/services/query-result.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,9 @@ class QueryResult {
}
return v;
});
if (filter.values.length > 1 && filter.multiple) {
filter.current = filter.values.slice();
}
});

return filters;
Expand Down

0 comments on commit fa30a58

Please sign in to comment.