Skip to content

Commit 44bfbe5

Browse files
committed
fix profile
1 parent 6bc1f60 commit 44bfbe5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/app/features/profile/component/updateform/profile-popup/update-profile.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ export class UpdateProfileComponent {
6969
displayName: string = '';
7070
firstName: string = '';
7171
lastName: string = '';
72-
selectedEducation: any = null;
73-
selectedGender: any = null;
72+
selectedEducation: any = { value: 9, label: 'Khác' };
73+
selectedGender: any = { value: 'other', label: 'Khác' };
7474
dob: string = ''; // ngày sinh dạng string để bind với datetime-local
7575
originalDob: string = '';
7676
bio: string = '';
@@ -117,6 +117,7 @@ export class UpdateProfileComponent {
117117
this.gender = [
118118
{ value: 'false', label: 'Nam' },
119119
{ value: 'true', label: 'Nữ' },
120+
{ value: 'other', label: 'Khác' },
120121
];
121122
}
122123

0 commit comments

Comments
 (0)