Skip to content

Commit

Permalink
chore: apply changes after linting [bot]
Browse files Browse the repository at this point in the history
  • Loading branch information
taiga-family-bot authored and taiga-family-bot committed Sep 17, 2024
1 parent 67d1d86 commit 7ac2e61
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions projects/layout/components/app-bar/app-bar-back.component.ts
Original file line number Diff line number Diff line change
@@ -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';
}

0 comments on commit 7ac2e61

Please sign in to comment.