We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7e7be7d + 44bfbe5 commit 5065d46Copy full SHA for 5065d46
src/app/features/profile/component/updateform/profile-popup/update-profile.ts
@@ -69,8 +69,8 @@ export class UpdateProfileComponent {
69
displayName: string = '';
70
firstName: string = '';
71
lastName: string = '';
72
- selectedEducation: any = null;
73
- selectedGender: any = null;
+ selectedEducation: any = { value: 9, label: 'Khác' };
+ selectedGender: any = { value: 'other', label: 'Khác' };
74
dob: string = ''; // ngày sinh dạng string để bind với datetime-local
75
originalDob: string = '';
76
bio: string = '';
@@ -116,6 +116,7 @@ export class UpdateProfileComponent {
116
this.gender = [
117
{ value: 'false', label: 'Nam' },
118
{ value: 'true', label: 'Nữ' },
119
+ { value: 'other', label: 'Khác' },
120
];
121
}
122
0 commit comments