diff --git a/projects/player/src/app/components/layout/layout.component.html b/projects/player/src/app/components/layout/layout.component.html index ca6bac75709fe7d1b7d325c2d9654c454eabdbf4..e8c6282b67a982f29efc745002cc697e8423e811 100644 --- a/projects/player/src/app/components/layout/layout.component.html +++ b/projects/player/src/app/components/layout/layout.component.html @@ -71,7 +71,7 @@ <ng-template #scrollPagesSeparatedView let-pagesContainer> <mat-tab-group - appHideFirstChild + aspectHideFirstChild [hideFirstChild]="hidePageLabels" (childHeight)="tabHeaderHeight = $event" mat-align-tabs="start" diff --git a/projects/player/src/app/directives/hide-first-child.directive.ts b/projects/player/src/app/directives/hide-first-child.directive.ts index d80025275e1ee5c3bb8a6271544f092514a0baa1..e603b743a93220e647e05c8515c0fdb90f54ed90 100644 --- a/projects/player/src/app/directives/hide-first-child.directive.ts +++ b/projects/player/src/app/directives/hide-first-child.directive.ts @@ -7,7 +7,7 @@ import { takeUntil } from 'rxjs/operators'; import { NativeEventService } from '../services/native-event.service'; @Directive({ - selector: '[appHideFirstChild]' + selector: '[aspectHideFirstChild]' }) export class HideFirstChildDirective implements OnInit, AfterViewInit, OnDestroy { @Input() hideFirstChild!: boolean;