From: Bill Erickson Date: Thu, 26 Dec 2019 17:17:55 +0000 (-0500) Subject: LP1848550 / LP1835128 Redirect to AngJS splash page X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=bf8b2637b032859da95a7c671080f4478b9decdd;p=evergreen%2Fpines.git LP1848550 / LP1835128 Redirect to AngJS splash page Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/staff/login.component.ts b/Open-ILS/src/eg2/src/app/staff/login.component.ts index 5487575bb5..e0aa466835 100644 --- a/Open-ILS/src/eg2/src/app/staff/login.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/login.component.ts @@ -90,8 +90,12 @@ export class StaffLoginComponent implements OnInit { // Force reload of the app after a successful login. // This allows the route resolver to re-run with a // valid auth token and workstation. - window.location.href = - this.ngLocation.prepareExternalUrl(url); + + // Temporarily redirect to AngularJS splash page + // (LP#1848550/LP#1835128) + window.location.href = '/eg/staff/splash'; + // this.ngLocation.prepareExternalUrl(url); + }); } },