Skip to content

Commit

Permalink
MOSIP-34908 resovled gender dropdown issue
Browse files Browse the repository at this point in the history
Signed-off-by: MadhuMosip <[email protected]>
  • Loading branch information
MadhuMosip committed Aug 1, 2024
1 parent e76b009 commit ac3f50d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ export class UpdatedemographicComponent implements OnInit, OnDestroy {
})
let self = this;
if (formControlName !== "proofOfIdentity") {
if (event.value.toLowerCase() !== currentValueCode.toLocaleLowerCase()) {
if (event.value !== currentValueCode) {
this.isSameData[formControlName] = false;
this.userInfoClone[formControlName] = []
this.getUserPerfLang.forEach(item => {
Expand Down

0 comments on commit ac3f50d

Please sign in to comment.