Skip to content

Commit

Permalink
change max length for token name
Browse files Browse the repository at this point in the history
  • Loading branch information
pgiertych committed Apr 10, 2024
1 parent ff84021 commit de80bf8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class AccessTokensComponent implements OnInit {

ngOnInit() {
this.requestForm = this.formBuilder.group({
name: ['', [Validators.required, Validators.minLength(1), Validators.maxLength(30)]],
name: ['', [Validators.required, Validators.minLength(1), Validators.maxLength(16)]],
})

this.tokens = this.tokenService.getAll();
Expand Down

0 comments on commit de80bf8

Please sign in to comment.