From 77fb6c0d88e9889199c0e859dbade53f638ddfd4 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Fri, 26 May 2023 10:09:56 -0300 Subject: fix compile --- .../exchange-backoffice-ui/src/handlers/InputSelectMultiple.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/exchange-backoffice-ui/src/handlers/InputSelectMultiple.tsx') diff --git a/packages/exchange-backoffice-ui/src/handlers/InputSelectMultiple.tsx b/packages/exchange-backoffice-ui/src/handlers/InputSelectMultiple.tsx index 8369e509d..837744827 100644 --- a/packages/exchange-backoffice-ui/src/handlers/InputSelectMultiple.tsx +++ b/packages/exchange-backoffice-ui/src/handlers/InputSelectMultiple.tsx @@ -6,7 +6,7 @@ import { useState } from "preact/hooks"; export function InputSelectMultiple( props: { - choices: Choice[]; + choices: Choice[]; unique?: boolean; max?: number; } & UIFormProps, @@ -18,7 +18,7 @@ export function InputSelectMultiple( const [filter, setFilter] = useState(undefined); const regex = new RegExp(`.*${filter}.*`, "i"); const choiceMap = choices.reduce((prev, curr) => { - return { ...prev, [curr.value]: curr.label }; + return { ...prev, [curr.value as string]: curr.label }; }, {} as Record); const list = (value ?? []) as string[]; @@ -111,14 +111,14 @@ export function InputSelectMultiple( role="option" onClick={() => { setFilter(undefined); - if (unique && list.indexOf(v.value) !== -1) { + if (unique && list.indexOf(v.value as string) !== -1) { return; } if (max !== undefined && list.length >= max) { return; } const newValue = [...list]; - newValue.splice(0, 0, v.value); + newValue.splice(0, 0, v.value as string); onChange(newValue as T[K]); }} -- cgit v1.2.3