mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-8433] ACA: User Profile Service (#3957)
This commit is contained in:
@@ -1,2 +1 @@
|
||||
<h1 class="aca-sr-only" title="{{pageHeading | async | translate}}">{{ pageHeading | async | translate }}</h1>
|
||||
<router-outlet></router-outlet>
|
||||
|
@@ -23,7 +23,7 @@
|
||||
*/
|
||||
|
||||
import { Component, ViewEncapsulation } from '@angular/core';
|
||||
import { Observable, Subject } from 'rxjs';
|
||||
import { Subject } from 'rxjs';
|
||||
import { AppService } from '@alfresco/aca-shared';
|
||||
|
||||
@Component({
|
||||
@@ -34,10 +34,8 @@ import { AppService } from '@alfresco/aca-shared';
|
||||
})
|
||||
export class AppComponent {
|
||||
onDestroy$: Subject<boolean> = new Subject<boolean>();
|
||||
pageHeading: Observable<string>;
|
||||
|
||||
constructor(private appService: AppService) {
|
||||
this.pageHeading = this.appService.pageHeading$;
|
||||
this.appService.init();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user