From 25e2dbf9d6f2d8f15e6d822abd2b30672b16f3fa Mon Sep 17 00:00:00 2001 From: soup Date: Sun, 5 Mar 2023 16:01:01 +0100 Subject: [PATCH] fix(filters): quality multi select not closing (#725) fix: drop down menu interactions --- web/src/components/inputs/select.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/components/inputs/select.tsx b/web/src/components/inputs/select.tsx index f522458..33f24b3 100644 --- a/web/src/components/inputs/select.tsx +++ b/web/src/components/inputs/select.tsx @@ -65,7 +65,7 @@ export const MultiSelect = ({ }: FieldProps) => ( ({ value: i.value ?? i, label: i.label ?? i }))].reduce((map, obj) => map.set(obj.value, obj), new Map()).values()]} + options={options} disabled={disabled} labelledBy={name} isCreatable={creatable} @@ -87,6 +87,7 @@ export const MultiSelect = ({ ); }; + interface IndexerMultiSelectOption { id: number; name: string;