Skip to content

Commit 94dae6f

Browse files
committed
refactor: rows -> minRows
This was deprecated in a previous version of `@material-ui/core`.
1 parent 72bcd1c commit 94dae6f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/src/components/FormTextField/FormTextField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export interface FormTextFieldProps<T>
4444
| "onChange"
4545
| "placeholder"
4646
| "required"
47-
| "rows"
47+
| "minRows"
4848
| "select"
4949
| "SelectProps"
5050
| "style"

site/src/pages/TemplateSettingsPage/TemplateSettingsForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const TemplateSettingsForm: FC<TemplateSettingsForm> = ({
104104
fullWidth
105105
label={Language.descriptionLabel}
106106
variant="outlined"
107-
rows={2}
107+
minRows={2}
108108
/>
109109

110110
<div className={styles.iconField}>

0 commit comments

Comments
 (0)