|
@ -18,7 +18,12 @@ import { first, takeUntil } from 'rxjs/operators'; |
|
|
styleUrls: ['./zen-page.scss'] |
|
|
styleUrls: ['./zen-page.scss'] |
|
|
}) |
|
|
}) |
|
|
export class ZenPageComponent implements AfterViewInit, OnDestroy, OnInit { |
|
|
export class ZenPageComponent implements AfterViewInit, OnDestroy, OnInit { |
|
|
public tabs: { iconName: string; label: string; path: string }[] = []; |
|
|
public tabs: { |
|
|
|
|
|
iconName: string; |
|
|
|
|
|
label: string; |
|
|
|
|
|
path: string; |
|
|
|
|
|
showCondition?: boolean; |
|
|
|
|
|
}[] = []; |
|
|
public user: User; |
|
|
public user: User; |
|
|
|
|
|
|
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|