Skip to content

Commit

Permalink
correctly added multiselect for reports table filters (opendistro-for…
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcui1225 authored and zhongnansu committed Dec 8, 2020
1 parent 1d29368 commit 1813e39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kibana-reports/public/components/main/reports_table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export function ReportsTable(props) {
type: 'field_value_selection',
field: 'type',
name: 'Type',
multiselect: false,
multiSelect: 'or',
options: reportTypeOptions.map((type) => ({
value: type,
name: type,
Expand All @@ -243,7 +243,7 @@ export function ReportsTable(props) {
type: 'field_value_selection',
field: 'state',
name: 'State',
multiselect: false,
multiSelect: 'or',
options: reportStatusOptions.map((state) => ({
value: state,
name: state,
Expand Down

0 comments on commit 1813e39

Please sign in to comment.