diff --git a/js/components/userFeedback/reportForm.js b/js/components/userFeedback/reportForm.js index d5c754004..c4fd57088 100644 --- a/js/components/userFeedback/reportForm.js +++ b/js/components/userFeedback/reportForm.js @@ -36,7 +36,7 @@ const useStyles = makeStyles(theme => ({ minWidth: '256px' }, description: { - minHeight: '270px' + minHeight: '245px' }, body: { width: '100%', @@ -243,6 +243,10 @@ export const ReportForm = memo(({ formType }) => { return text; }; + const getTextAreaRows = rows => { + return isFirefox() ? rows - 1 : rows; + }; + return (