From 5fc8a8490d9146be1a464fc0336ce20ee2ac285a Mon Sep 17 00:00:00 2001 From: David Cui <53581635+davidcui-amzn@users.noreply.github.com> Date: Wed, 25 Nov 2020 09:11:43 -0800 Subject: [PATCH] correctly added multiselect for reports table filters (#218) --- kibana-reports/public/components/main/reports_table.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kibana-reports/public/components/main/reports_table.tsx b/kibana-reports/public/components/main/reports_table.tsx index 099e441c..5235e143 100644 --- a/kibana-reports/public/components/main/reports_table.tsx +++ b/kibana-reports/public/components/main/reports_table.tsx @@ -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, @@ -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,