diff --git a/components/select/index.tsx b/components/select/index.tsx index 40b2c98670..648ef332e1 100755 --- a/components/select/index.tsx +++ b/components/select/index.tsx @@ -54,7 +54,7 @@ export type SelectValue = string | string[] | number | number[] | LabeledValue | export interface SelectProps extends AbstractSelectProps { value?: T; defaultValue?: T; - mode?: 'default' | 'multiple' | 'tags' | 'combobox' | string; + mode?: 'default' | 'multiple' | 'tags' | 'combobox' | undefined; optionLabelProp?: string; firstActiveValue?: string | string[]; onChange?: (value: T, option: React.ReactElement | React.ReactElement[]) => void;