From e89a8c79f2e785e4523bd0202435bafd766c2b3e Mon Sep 17 00:00:00 2001 From: Piotr Pekala Date: Mon, 2 Sep 2019 07:08:08 -0700 Subject: [PATCH] Update log-console.component.ts --- .../project-map/log-console/log-console.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/project-map/log-console/log-console.component.ts b/src/app/components/project-map/log-console/log-console.component.ts index 26d758e8..84095b47 100644 --- a/src/app/components/project-map/log-console/log-console.component.ts +++ b/src/app/components/project-map/log-console/log-console.component.ts @@ -88,13 +88,13 @@ export class LogConsoleComponent implements OnInit, AfterViewInit, OnDestroy { message: message }); }); - this.errorSubscription = this.projectWebServiceHandler.warningNotificationEmitter.subscribe((message) => { + this.warningSubscription = this.projectWebServiceHandler.warningNotificationEmitter.subscribe((message) => { this.showMessage({ type: 'warning', message: message }); }); - this.errorSubscription = this.projectWebServiceHandler.infoNotificationEmitter.subscribe((message) => { + this.infoSubscription = this.projectWebServiceHandler.infoNotificationEmitter.subscribe((message) => { this.showMessage({ type: 'info', message: message