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.
1 parent 6bc1f60 commit 44bfbe5Copy full SHA for 44bfbe5
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 = '';
@@ -117,6 +117,7 @@ export class UpdateProfileComponent {
117
this.gender = [
118
{ value: 'false', label: 'Nam' },
119
{ value: 'true', label: 'Nữ' },
120
+ { value: 'other', label: 'Khác' },
121
];
122
}
123
0 commit comments