diff --git a/login/user.component.ts b/login/user.component.ts index e1b353a0..acf2b748 100644 --- a/login/user.component.ts +++ b/login/user.component.ts @@ -52,7 +52,7 @@ export class UserComponent { this.errorCode = params["errorCode"]; this.redirectUrl = params["redirectUrl"]; this.errorMessage = ""; - if (this.loggedIn && this.errorCode == '1') { + if (this.loggedIn && (this.errorCode == '1' || this.errorCode == '3')) { this.redirect(); } else { this.loading = false; diff --git a/utils/modal/full-screen-modal/full-screen-modal.component.ts b/utils/modal/full-screen-modal/full-screen-modal.component.ts index 26717cd6..99185b1f 100644 --- a/utils/modal/full-screen-modal/full-screen-modal.component.ts +++ b/utils/modal/full-screen-modal/full-screen-modal.component.ts @@ -7,19 +7,24 @@ import {delay} from "rxjs/operators"; template: `
- +
-
{{title}}
+
+

{{title}}

+
+
+ +
+ + +
+
-
+
-
`