From 16c6f8f9dac8dfda4de51ce544700fd249bb618e Mon Sep 17 00:00:00 2001 From: Chintan Kavathia Date: Fri, 8 Nov 2024 15:56:40 +0530 Subject: [PATCH] chore: fix ci errors --- .../src/lib/components/body/body.component.ts | 368 +++++++++--------- 1 file changed, 184 insertions(+), 184 deletions(-) diff --git a/projects/ngx-datatable/src/lib/components/body/body.component.ts b/projects/ngx-datatable/src/lib/components/body/body.component.ts index 011eb4436..89524b23e 100644 --- a/projects/ngx-datatable/src/lib/components/body/body.component.ts +++ b/projects/ngx-datatable/src/lib/components/body/body.component.ts @@ -61,192 +61,192 @@ import { ProgressBarComponent } from './progress-bar.component'; > } - @if (rows?.length) { - - @if (summaryRow && summaryPosition === 'top') { - - - } - @for (group of rowsToRender(); track rowTrackingFn(i, group); let i = $index) { - - @if (rowDefTemplate) { - - } @else { - @if (isRow(group)) { - - - } + @if (rows?.length) { + + @if (summaryRow && summaryPosition === 'top') { + + + } + @for (group of rowsToRender(); track rowTrackingFn(i, group); let i = $index) { + + @if (rowDefTemplate) { + + } @else { + @if (isRow(group)) { + + } - - - @if (isRow(group)) { - - - } - - - @if (isGroup(group)) { - - @for (row of group.value; track rowTrackingFn(i, row); let i = $index) { - - - } + } + + + @if (isRow(group)) { + + } - - } - @if (summaryRow && summaryPosition === 'bottom') { - - - } - - } - @if (!rows?.length && !loadingIndicator && !ghostLoadingIndicator) { - - - } + + + @if (isGroup(group)) { + + @for (row of group.value; track rowTrackingFn(i, row); let i = $index) { + + + } + } + + } + @if (summaryRow && summaryPosition === 'bottom') { + + + } + + } + @if (!rows?.length && !loadingIndicator && !ghostLoadingIndicator) { + + + } `, changeDetection: ChangeDetectionStrategy.OnPush, host: {