mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
increase secret value max length limit (#6030)
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user