Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
anup-nehe committed Oct 17, 2023
2 parents 0733719 + e148d80 commit 508b07f
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,11 @@ export class UpdatedemographicComponent implements OnInit, OnDestroy {
}else{
this.userInputValues[schema.attributeName] = {};
this.buildJSONData[schema.attributeName] = self.userInfo[schema.attributeName]
self.userInfo[schema.attributeName].forEach(item =>{
this.userInputValues[schema.attributeName][item.language] = ''
})
if(this.userInfo[schema.attributeName]){
self.userInfo[schema.attributeName].forEach(item =>{
this.userInputValues[schema.attributeName][item.language] = ''
})
}
}
}
}
Expand Down

0 comments on commit 508b07f

Please sign in to comment.