Skip to content
This repository has been archived by the owner on Aug 9, 2022. It is now read-only.

Commit

Permalink
correctly added multiselect for reports table filters (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcui1225 committed Nov 25, 2020
1 parent f176e1f commit dec4856
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 dec4856

Please sign in to comment.