reversed order to temporary ignore server error

This commit is contained in:
Timo Bejan 2021-08-23 16:23:40 +03:00
parent 7094ece351
commit 292524c1c3
2 changed files with 4 additions and 3 deletions

View File

@ -159,9 +159,10 @@ export class DossierOverviewScreenComponent extends ListingComponent<FileStatusW
.pipe(tap(index => (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();

View File

@ -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",