mirror of
https://github.com/bitwarden/browser.git
synced 2025-02-18 01:41:27 +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],
|
validators: [Validators.required, Validators.maxLength(500), BitValidators.trimValidator],
|
||||||
updateOn: "submit",
|
updateOn: "submit",
|
||||||
}),
|
}),
|
||||||
value: new FormControl("", [Validators.required, Validators.maxLength(3500)]),
|
value: new FormControl("", [Validators.required, Validators.maxLength(25000)]),
|
||||||
notes: new FormControl("", {
|
notes: new FormControl("", {
|
||||||
validators: [Validators.maxLength(7000), BitValidators.trimValidator],
|
validators: [Validators.maxLength(7000), BitValidators.trimValidator],
|
||||||
updateOn: "submit",
|
updateOn: "submit",
|
||||||
|
Loading…
Reference in New Issue
Block a user