QuickApp icon indicating copy to clipboard operation
QuickApp copied to clipboard

two minor bugs

Open tonydrake opened this issue 6 years ago • 0 comments

user-editor.component.ts private isSendingEmail = false; changed to public isSendingEmail = false; and private sendVerificationEmail() {
changed to public sendVerificationEmail() { and account.controller.cs ApplicationUser appUser = Mapper.Map<ApplicationUser>(user); changed to ApplicationUser appUser = _mapper.Map<ApplicationUser>(user);

1st one only causes issue on production deployment and second only is issue on forget password or add user (from login).

tonydrake avatar Aug 16 '19 15:08 tonydrake