X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=blueprints%2Fcommon%2Feliot-ui%2Ffrontend-src%2Fsrc%2Fapp%2Fapp.component.ts;h=9df7fc6e2ab62e7f638e30d35731e7c2d5b053dc;hb=5c2048d4d3e672783eea4f306aa9a03f33a1a9f2;hp=2aa6759051861d9627b8f56ac883862cd1d911dd;hpb=59f512662c02a16c1d5c45b090b185d2e773310f;p=eliot.git diff --git a/blueprints/common/eliot-ui/frontend-src/src/app/app.component.ts b/blueprints/common/eliot-ui/frontend-src/src/app/app.component.ts index 2aa6759..9df7fc6 100644 --- a/blueprints/common/eliot-ui/frontend-src/src/app/app.component.ts +++ b/blueprints/common/eliot-ui/frontend-src/src/app/app.component.ts @@ -1,4 +1,5 @@ import { Component } from '@angular/core'; +import { ToolbarService } from './toolbar/toolbar.service'; @Component({ selector: 'app-root', @@ -8,5 +9,10 @@ import { Component } from '@angular/core'; export class AppComponent { title = 'EliotUI'; + constructor(public toolbarService: ToolbarService) {} + + ngOnInit() { + this.toolbarService.show(); + } }