mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
increase secret value max length limit (#6030)
This commit is contained in:
parent
c6972f3e1c
commit
17a4edcda1
@ -40,7 +40,7 @@ export class SecretDialogComponent implements OnInit {
|
||||
validators: [Validators.required, Validators.maxLength(500), BitValidators.trimValidator],
|
||||
updateOn: "submit",
|
||||
}),
|
||||
value: new FormControl("", [Validators.required, Validators.maxLength(3500)]),
|
||||
value: new FormControl("", [Validators.required, Validators.maxLength(25000)]),
|
||||
notes: new FormControl("", {
|
||||
validators: [Validators.maxLength(7000), BitValidators.trimValidator],
|
||||
updateOn: "submit",
|
||||
|
Loading…
Reference in New Issue
Block a user