From 292524c1c3e68872099e988c0b45bf958cae997d Mon Sep 17 00:00:00 2001 From: Timo Bejan Date: Mon, 23 Aug 2021 16:23:40 +0300 Subject: [PATCH] reversed order to temporary ignore server error --- .../dossier-overview-screen.component.ts | 3 ++- apps/red-ui/src/assets/config/config.json | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/red-ui/src/app/modules/dossier/screens/dossier-overview-screen/dossier-overview-screen.component.ts b/apps/red-ui/src/app/modules/dossier/screens/dossier-overview-screen/dossier-overview-screen.component.ts index e3f2f123d..5e91c0cd1 100644 --- a/apps/red-ui/src/app/modules/dossier/screens/dossier-overview-screen/dossier-overview-screen.component.ts +++ b/apps/red-ui/src/app/modules/dossier/screens/dossier-overview-screen/dossier-overview-screen.component.ts @@ -159,9 +159,10 @@ export class DossierOverviewScreenComponent extends ListingComponent (this._lastScrolledIndex = index))) .subscribe(); - this.dossierAttributes = await this._dossierAttributesService.getValues(this.currentDossier); this.searchService.setSearchKey('filename'); this._configureTableColumns(); + + this.dossierAttributes = await this._dossierAttributesService.getValues(this.currentDossier); } catch (e) { } finally { this._loadingService.stop(); diff --git a/apps/red-ui/src/assets/config/config.json b/apps/red-ui/src/assets/config/config.json index 5499bdcca..4b001a0b1 100644 --- a/apps/red-ui/src/assets/config/config.json +++ b/apps/red-ui/src/assets/config/config.json @@ -1,6 +1,6 @@ { - "OAUTH_URL": "https://qa4.iqser.cloud/auth/realms/redaction", - "API_URL": "https://qa4.iqser.cloud/redaction-gateway-v1", + "OAUTH_URL": "https://red-staging.iqser.cloud/auth/realms/redaction", + "API_URL": "https://red-staging.iqser.cloud/redaction-gateway-v1", "OAUTH_CLIENT_ID": "redaction", "BACKEND_APP_VERSION": "4.4.40", "FRONTEND_APP_VERSION": "1.1",