samussiah opened this issue 3 years ago · 1 comments
Related to #254. Currently all options in multi-select filter dropdowns are not selected even though the corresponding filter values are represented in the data.
selected
Probably just update this line from:
.property('selected', d => d === control.start);
to
.property('selected', d => d === control.start || control.multiple === true);