Skip to content

Commit

Permalink
chore: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Jan 2, 2024
1 parent bb93ec1 commit ab17fcd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/abc/global-footer/global-footer.component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Direction, Directionality } from '@angular/cdk/bidi';
import { NgTemplateOutlet } from '@angular/common';
import {
ChangeDetectionStrategy,
ChangeDetectorRef,
Expand Down Expand Up @@ -32,7 +33,8 @@ import { GlobalFooterLink } from './global-footer.types';
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
encapsulation: ViewEncapsulation.None,
standalone: true
standalone: true,
imports: [NgTemplateOutlet]
})
export class GlobalFooterComponent implements OnInit {
private dir$ = this.directionality.change?.pipe(takeUntilDestroyed());
Expand Down

0 comments on commit ab17fcd

Please sign in to comment.