From 068de07a80c9c2a19e809ed1d043619b4894ccf3 Mon Sep 17 00:00:00 2001 From: waterplea Date: Thu, 15 Aug 2024 17:47:31 +0400 Subject: [PATCH] chore: fix --- .../modules/components/table/examples/7/index.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/projects/demo/src/modules/components/table/examples/7/index.ts b/projects/demo/src/modules/components/table/examples/7/index.ts index 4d02d28ab9f03..75a635e69416f 100644 --- a/projects/demo/src/modules/components/table/examples/7/index.ts +++ b/projects/demo/src/modules/components/table/examples/7/index.ts @@ -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, ], @@ -39,11 +39,11 @@ export default class Example { }, ] as const; - readonly items = [10, 50, 100]; - readonly content: TuiStringHandler> = ({$implicit}) => + protected readonly items = [10, 50, 100]; + protected readonly content: TuiStringHandler> = ({$implicit}) => `${$implicit} items per page`; - index = 4; - length = 10; - size = 10; + protected index = 4; + protected length = 10; + protected size = 10; }