Skip to content

Commit

Permalink
[Select] Make value prop required in TypeScript (#13810)
Browse files Browse the repository at this point in the history
  • Loading branch information
t49tran authored and eps1lon committed Dec 5, 2018
1 parent f7c1a21 commit 182f7d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/material-ui/src/Select/SelectInput.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface SelectInputProps {
renderValue?: (value: SelectInputProps['value']) => React.ReactNode;
SelectDisplayProps?: React.HTMLAttributes<HTMLDivElement>;
tabIndex?: number;
value?: string | number | boolean | Array<string | number | boolean>;
value: string | number | boolean | Array<string | number | boolean>;
variant?: 'standard' | 'outlined' | 'filled';
}

Expand Down

0 comments on commit 182f7d8

Please sign in to comment.