Textfield: rows without multiline doesn't work well on android (the area is 1row and not resizeable)

This commit is contained in:
Eric van der Vlist 2023-01-17 11:49:19 +01:00
parent 8be0ca5b3d
commit 4917d27c9c
1 changed files with 1 additions and 0 deletions

View File

@ -110,6 +110,7 @@ const WptEditor: Component<Props> = ({ wptId }) => {
label={t('gpxDesc')}
type='text'
rows={5}
multiline={true}
value={editedWpt()?.desc || ''}
onChange={(event: any) => {
setEditedWpt({ ...editedWpt(), desc: event.target.value });