More Cleanup (#1033)

* Tweaked the backend for recently updated series to allow for 100 more items to be calculated against.

Close the account migration screen after migration email is sent.

* Cleaned up some code
This commit is contained in:
Joseph Milazzo 2022-02-04 15:00:49 -08:00 committed by GitHub
parent 10984278f3
commit 7fab1cc30d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 20 deletions

View file

@ -47,8 +47,10 @@ export class AddEmailToAccountMigrationModalComponent implements OnInit {
// Display the email to the user
this.emailLink = email;
await this.confirmService.alert('Please click this link to confirm your email. You must confirm to be able to login. You may need to log out of the current account before clicking. <br/> <a href="' + this.emailLink + '" target="_blank">' + this.emailLink + '</a>');
this.modal.close(true);
} else {
await this.confirmService.alert('Please check your email for the confirmation link. You must confirm to be able to login.');
this.modal.close(true);
}
});
});