feat(web/input): allow select to be cleared

This commit is contained in:
Luke
2023-01-09 14:34:41 +01:00
parent c88ed6b299
commit 8936191f2e
2 changed files with 2 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ const SelectField: React.FC<Props> = (props) => {
label={props.row.label}
description={props.row.description}
withAsterisk={props.row.required}
clearable={props.row.clearable}
/>
);
};

View File

@@ -30,6 +30,7 @@ export interface ISelect {
disabled?: boolean;
description?: string;
required?: boolean;
clearable?: boolean;
}
export interface INumber {