The issue is that I had renamed the ngModel variable name exactly same
[(ngModel)]="adminUsername" #adminUsername="ngModel"
The Solution which worked for me
[(ngModel)]="adminUsernameText" #adminUsername="ngModel"
The issue is that I had renamed the ngModel variable name exactly same
[(ngModel)]="adminUsername" #adminUsername="ngModel"
The Solution which worked for me
[(ngModel)]="adminUsernameText" #adminUsername="ngModel"