[ACS-8433] ACA: User Profile Service (#3957)

This commit is contained in:
Denys Vuika
2024-07-22 10:07:43 -04:00
committed by GitHub
parent f23f5edd08
commit b5568d43fa
15 changed files with 183 additions and 153 deletions

View File

@@ -1,2 +1 @@
<h1 class="aca-sr-only" title="{{pageHeading | async | translate}}">{{ pageHeading | async | translate }}</h1>
<router-outlet></router-outlet>

View File

@@ -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();
}
}