UI: fix select, make selectProps optional

This commit is contained in:
Johannes Kirschbauer
2025-01-03 16:38:14 +01:00
parent bf62792baa
commit 512e00f791

View File

@@ -27,7 +27,7 @@ export interface Option {
interface SelectInputpProps {
value: string[] | string;
selectProps: JSX.InputHTMLAttributes<HTMLSelectElement>;
selectProps?: JSX.InputHTMLAttributes<HTMLSelectElement>;
options: Option[];
label: JSX.Element;
labelProps?: InputLabelProps;