UI: fix select, make selectProps optional

This commit is contained in:
Johannes Kirschbauer
2025-01-03 16:38:14 +01:00
parent 51ea8f350c
commit ca72550ade

View File

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