From 512e00f791ceea6608ad16ade5406b431ce79cbc Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Fri, 3 Jan 2025 16:38:14 +0100 Subject: [PATCH] UI: fix select, make selectProps optional --- pkgs/webview-ui/app/src/Form/fields/Select.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/webview-ui/app/src/Form/fields/Select.tsx b/pkgs/webview-ui/app/src/Form/fields/Select.tsx index c8f67c6d7..26990bbcf 100644 --- a/pkgs/webview-ui/app/src/Form/fields/Select.tsx +++ b/pkgs/webview-ui/app/src/Form/fields/Select.tsx @@ -27,7 +27,7 @@ export interface Option { interface SelectInputpProps { value: string[] | string; - selectProps: JSX.InputHTMLAttributes; + selectProps?: JSX.InputHTMLAttributes; options: Option[]; label: JSX.Element; labelProps?: InputLabelProps;