| commit | 23e63e6420d4ab3c9ade85a0ef3096a6a7f23372 | [log] [tgz] |
|---|---|---|
| author | Dennis Schmitt <dennis.schmitt@pta.de> | Tue May 26 11:12:24 2020 +0200 |
| committer | Dennis Schmitt <dennis.schmitt@pta.de> | Tue May 26 11:12:24 2020 +0200 |
| tree | a1fe5725a95d0a71efbe0a17fb3965b0b83832b2 | |
| parent | 1881eef6c788cef5a31ee1eaefab70c1ccde1a1e [diff] |
Bugfix (change order to load preconfig) Signed-off-by: Dennis Schmitt <dennis.schmitt@pta.de>
diff --git a/projects/grid-failure-information-app/src/app/app.component.ts b/projects/grid-failure-information-app/src/app/app.component.ts index 5d2fae9..94f678a 100644 --- a/projects/grid-failure-information-app/src/app/app.component.ts +++ b/projects/grid-failure-information-app/src/app/app.component.ts
@@ -53,8 +53,8 @@ */ ngOnInit() { this.appSandbox.setupLanguage(); - this.appSandbox.setupPreConfig(); this._extractTokenFromParameters(); + this.appSandbox.setupPreConfig(); this._registerEvents(); }