diff --git a/packages/ra-ui-materialui/src/input/SelectInput.tsx b/packages/ra-ui-materialui/src/input/SelectInput.tsx index 86b59c1434d..6e690c20d43 100644 --- a/packages/ra-ui-materialui/src/input/SelectInput.tsx +++ b/packages/ra-ui-materialui/src/input/SelectInput.tsx @@ -395,6 +395,7 @@ export type SelectInputProps = Omit<CommonInputProps, 'source'> & disableValue?: string; emptyText?: string | ReactElement; emptyValue?: any; + resettable?: boolean; // Source is optional as AutocompleteInput can be used inside a ReferenceInput that already defines the source source?: string; onChange?: (event: ChangeEvent<HTMLInputElement> | RaRecord) => void;