From 7ac2e611665673ec6f47405c85384dabe1e83ae0 Mon Sep 17 00:00:00 2001 From: taiga-family-bot Date: Tue, 17 Sep 2024 09:33:48 +0000 Subject: [PATCH] chore: apply changes after linting [bot] --- .../components/app-bar/app-bar-back.component.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/projects/layout/components/app-bar/app-bar-back.component.ts b/projects/layout/components/app-bar/app-bar-back.component.ts index bd6b59645f62..388e4ec9f139 100644 --- a/projects/layout/components/app-bar/app-bar-back.component.ts +++ b/projects/layout/components/app-bar/app-bar-back.component.ts @@ -1,19 +1,19 @@ import {ChangeDetectionStrategy, Component} from '@angular/core'; +import type {TuiAppearanceOptions} from '@taiga-ui/core/directives/appearance'; import { TuiAppearance, - type TuiAppearanceOptions, tuiAppearanceOptionsProvider, -} from '@taiga-ui/core'; +} from '@taiga-ui/core/directives/appearance'; @Component({ standalone: true, selector: 'button[tuiAppBarBack], a[tuiAppBarBack]', templateUrl: './app-bar-back.template.html', styleUrls: ['./app-bar-back.style.less'], - hostDirectives: [TuiAppearance], - providers: [tuiAppearanceOptionsProvider(TuiAppBarBack)], changeDetection: ChangeDetectionStrategy.OnPush, + providers: [tuiAppearanceOptionsProvider(TuiAppBarBack)], + hostDirectives: [TuiAppearance], }) export class TuiAppBarBack implements TuiAppearanceOptions { - appearance = 'link'; + public appearance = 'link'; }