Skip to content

Commit

Permalink
Fix mobile comment input (went out of screen) (#3170)
Browse files Browse the repository at this point in the history
Co-authored-by: miko <sauce47@posteo.net>
  • Loading branch information
keikari and miko authored Oct 23, 2024
1 parent 559ad37 commit 8826d66
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion ui/component/textareaWithSuggestions/render-input.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,15 @@ const TextareaSuggestionsInput = (props: Props) => {
);

return (
<TextField inputRef={inputRef} variant="outlined" multiline minRows={1} select={false} {...autocompleteProps} />
<TextField
inputRef={inputRef}
variant="outlined"
multiline
minRows={1}
maxRows={15}
select={false}
{...autocompleteProps}
/>
);
}

Expand Down

0 comments on commit 8826d66

Please sign in to comment.