Skip to content

Commit

Permalink
feat: match new filter object style
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Murray <hellomikemurray@gmail.com>
  • Loading branch information
mikemurray committed Jan 17, 2020
1 parent d154594 commit 9580bd9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function DataTableFilterDisplay(props) {

// Show filters as chips
const chips = filterKeyArray.map((key) => {
const filterValue = customFilters[key];
const filterValue = customFilters[key].value;

if (Array.isArray(filterValue)) {
return filterValue.map((multiSelectValue) => (
Expand Down

0 comments on commit 9580bd9

Please sign in to comment.