chore: set max lines for feedback text field (#5714)

This commit is contained in:
ggurdin 2026-02-16 15:12:42 -05:00 committed by GitHub
parent 672c17361e
commit 55de949924
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -51,7 +51,8 @@ class _FeedbackDialogState extends State<FeedbackDialog> {
onFieldSubmitted: _feedbackController.text.isNotEmpty
? (value) => widget.onSubmit(value)
: null,
maxLines: null,
minLines: 1,
maxLines: 5,
onTapOutside: (_) => FocusManager.instance.primaryFocus?.unfocus(),
),
],