mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-06-18 06:48:09 +00:00
Merge branch 'master' into Support-for-editing-config-files
This commit is contained in:
@ -88,13 +88,13 @@ export class LogConsoleComponent implements OnInit, AfterViewInit, OnDestroy {
|
|||||||
message: message
|
message: message
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
this.errorSubscription = this.projectWebServiceHandler.warningNotificationEmitter.subscribe((message) => {
|
this.warningSubscription = this.projectWebServiceHandler.warningNotificationEmitter.subscribe((message) => {
|
||||||
this.showMessage({
|
this.showMessage({
|
||||||
type: 'warning',
|
type: 'warning',
|
||||||
message: message
|
message: message
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
this.errorSubscription = this.projectWebServiceHandler.infoNotificationEmitter.subscribe((message) => {
|
this.infoSubscription = this.projectWebServiceHandler.infoNotificationEmitter.subscribe((message) => {
|
||||||
this.showMessage({
|
this.showMessage({
|
||||||
type: 'info',
|
type: 'info',
|
||||||
message: message
|
message: message
|
||||||
|
Reference in New Issue
Block a user