From 81efa9b5552bc3191feee56a5f565c3e6affc92d Mon Sep 17 00:00:00 2001 From: jojohoch <joachim.hoch@iqb.hu-berlin.de> Date: Mon, 7 Mar 2022 16:17:25 +0100 Subject: [PATCH] [player] Rename selector of HideFirstChildDirective --- projects/player/src/app/components/layout/layout.component.html | 2 +- .../player/src/app/directives/hide-first-child.directive.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/player/src/app/components/layout/layout.component.html b/projects/player/src/app/components/layout/layout.component.html index ca6bac757..e8c6282b6 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 d80025275..e603b743a 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; -- GitLab