From fe76f6218dd13fa1e962d6c885a4f8ef892ff160 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 26 Dec 2019 12:17:55 -0500 Subject: [PATCH] LP1848550 / LP1835128 Redirect to AngJS splash page Signed-off-by: Bill Erickson Signed-off-by: Chris Sharp --- Open-ILS/src/eg2/src/app/staff/login.component.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 5a8d7c4ca6..207c525bdf 100644 --- a/Open-ILS/src/eg2/src/app/staff/login.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/login.component.ts @@ -94,8 +94,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); + }); } }, -- 2.43.2