Skip to content

Commit

Permalink
[TextField] pass minRows to InputComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
suliskh committed Oct 2, 2020
1 parent 4d50a9e commit 0d6abb0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/material-ui/src/TextField/TextField.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ const TextField = React.forwardRef(function TextField(props, ref) {
inputRef,
label,
maxRows,
minRows,
multiline = false,
name,
onBlur,
Expand Down Expand Up @@ -137,6 +138,7 @@ const TextField = React.forwardRef(function TextField(props, ref) {
name={name}
rows={rows}
maxRows={maxRows}
minRows={minRows}
type={type}
value={value}
id={id}
Expand Down

0 comments on commit 0d6abb0

Please sign in to comment.