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 github-actions[bot] committed Oct 7, 2024
1 parent 33fa9eb commit eaf3f2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default class Page {
protected readonly requiredVariants = [-1, 2, 4];
protected readonly itemsLimitVariants = [Infinity, 4, 2];
protected readonly sideVariants = ['start', 'end'] as const;
protected side: 'start' | 'end' = this.sideVariants[1]!;
protected side: 'end' | 'start' = this.sideVariants[1];
protected required = this.requiredVariants[0]!;
protected itemsLimit = this.itemsLimitVariants[0]!;
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class TuiItemsWithMoreDirective implements OnChanges {
public required = -1;

@Input()
public side: 'start' | 'end' = 'end';
public side: 'end' | 'start' = 'end';

// TODO: refactor to signal inputs after Angular update
public readonly change$ = new Subject<void>();
Expand Down

0 comments on commit eaf3f2d

Please sign in to comment.