fix(auth): set maxlength limit of 100 to tags (#1733)
## Description ## Tests
This commit is contained in:
commit
76f3c8bf47
2 changed files with 2 additions and 0 deletions
|
@ -27,6 +27,7 @@ class _AddTagDialogState extends State<AddTagDialog> {
|
|||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
TextFormField(
|
||||
maxLength: 100,
|
||||
decoration: InputDecoration(
|
||||
hintText: l10n.tag,
|
||||
hintStyle: const TextStyle(
|
||||
|
|
|
@ -29,6 +29,7 @@ class _EditTagDialogState extends State<EditTagDialog> {
|
|||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
TextFormField(
|
||||
maxLength: 100,
|
||||
decoration: InputDecoration(
|
||||
hintText: l10n.tag,
|
||||
hintStyle: const TextStyle(
|
||||
|
|
Loading…
Reference in a new issue