aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/app.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/app.component.ts')
-rw-r--r--sdc-workflow-designer-ui/src/app/app.component.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/sdc-workflow-designer-ui/src/app/app.component.ts b/sdc-workflow-designer-ui/src/app/app.component.ts
index 13035baa..f6573450 100644
--- a/sdc-workflow-designer-ui/src/app/app.component.ts
+++ b/sdc-workflow-designer-ui/src/app/app.component.ts
@@ -23,7 +23,6 @@ import { BroadcastService } from './services/broadcast.service';
styleUrls: ['./app.component.css']
})
export class AppComponent {
- public isLoading = false;
constructor(translate: TranslateService, private broadcastService: BroadcastService) {
// Init the I18n function.
@@ -43,8 +42,6 @@ export class AppComponent {
browserLang = window.navigator.language;
}
translate.use(browserLang);
- this.broadcastService.updateModelRestConfig$.subscribe(model=>{
- this.isLoading = false;
- });
+
}
}