Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
waterplea committed Aug 15, 2024
1 parent a2f01fb commit 068de07
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions projects/demo/src/modules/components/table/examples/7/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import {TuiButtonSelect, TuiDataListWrapper, TuiPagination} from '@taiga-ui/kit'
@Component({
standalone: true,
imports: [
TuiTable,
NgForOf,
TuiFormatNumberPipe,
AsyncPipe,
FormsModule,
TuiTable,
TuiFormatNumberPipe,
TuiButton,
TuiButtonSelect,
TuiPagination,
FormsModule,
TuiDataListWrapper,
TuiTextfield,
],
Expand All @@ -39,11 +39,11 @@ export default class Example {
},
] as const;

readonly items = [10, 50, 100];
readonly content: TuiStringHandler<TuiContext<number>> = ({$implicit}) =>
protected readonly items = [10, 50, 100];
protected readonly content: TuiStringHandler<TuiContext<number>> = ({$implicit}) =>
`${$implicit} items per page`;

index = 4;
length = 10;
size = 10;
protected index = 4;
protected length = 10;
protected size = 10;
}

0 comments on commit 068de07

Please sign in to comment.