fix(auth): set maxlength limit of 100 to tags (#1733)

## Description

## Tests
This commit is contained in:
Neeraj Gupta 2024-05-16 10:28:14 +05:30 committed by GitHub
commit 76f3c8bf47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -27,6 +27,7 @@ class _AddTagDialogState extends State<AddTagDialog> {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
TextFormField(
maxLength: 100,
decoration: InputDecoration(
hintText: l10n.tag,
hintStyle: const TextStyle(

View file

@ -29,6 +29,7 @@ class _EditTagDialogState extends State<EditTagDialog> {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
TextFormField(
maxLength: 100,
decoration: InputDecoration(
hintText: l10n.tag,
hintStyle: const TextStyle(