Skip to content

Commit 0c2863d

Browse files
webskinAllenFang
authored andcommitted
Update multiselect.js (#1025)
applyFilter should take the entire selection and not just the first element of the sélection
1 parent a534d52 commit 0c2863d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-bootstrap-table2-filter/src/components/multiselect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class MultiSelectFilter extends Component {
6565
needFilter = true;
6666
}
6767
if (needFilter) {
68-
this.applyFilter(this.selectInput.value);
68+
this.applyFilter(getSelections(this.selectInput));
6969
}
7070
}
7171

0 commit comments

Comments
 (0)