Webcharts icon indicating copy to clipboard operation
Webcharts copied to clipboard

Set options in multi-select filter dropdowns to selected initially.

Open 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.

samussiah avatar Jun 28 '21 15:06 samussiah

Probably just update this line from:

        .property('selected', d => d === control.start);

to

        .property('selected', d => d === control.start || control.multiple === true);

samussiah avatar Jun 28 '21 15:06 samussiah