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;