1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Set min rows on text areas

This commit is contained in:
Bill Thornton 2024-11-21 14:07:08 -05:00
parent edacbb6c32
commit fbaab4e3c8

View file

@ -133,6 +133,7 @@ export const Component = () => {
<TextField <TextField
fullWidth fullWidth
multiline multiline
minRows={5}
maxRows={5} maxRows={5}
InputProps={{ InputProps={{
className: 'textarea-mono' className: 'textarea-mono'
@ -147,6 +148,7 @@ export const Component = () => {
<TextField <TextField
fullWidth fullWidth
multiline multiline
minRows={5}
maxRows={20} maxRows={20}
InputProps={{ InputProps={{
className: 'textarea-mono' className: 'textarea-mono'