Skip to content

Commit da4a2c7

Browse files
committed
set username length to 6
1 parent 449b33a commit da4a2c7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/shared/components/df-user-details/df-user-details-base.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export abstract class DfUserDetailsBaseComponent<T> implements OnInit {
6666
) {
6767
this.userForm = this.fb.group({
6868
profileDetailsGroup: this.fb.group({
69-
username: ['', Validators.minLength(16)],
69+
username: ['', Validators.minLength(6)],
7070
email: ['', Validators.email],
7171
firstName: [''],
7272
lastName: [''],

0 commit comments

Comments
 (0)