Update multiselect.js (#1025)

applyFilter should take the entire selection and not just the first element of the sélection
This commit is contained in:
Mickaël Gauvin
2019-08-03 15:49:09 +08:00
committed by Allen
parent a534d525c9
commit 0c2863d63c
@@ -65,7 +65,7 @@ class MultiSelectFilter extends Component {
needFilter = true;
}
if (needFilter) {
this.applyFilter(this.selectInput.value);
this.applyFilter(getSelections(this.selectInput));
}
}