File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
components/table/src/table Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import { NzTableLayout } from '../table.types';
1515 changeDetection : ChangeDetectionStrategy . OnPush ,
1616 encapsulation : ViewEncapsulation . None ,
1717 template : `
18- @for (width of listOfColWidth; track width ) {
18+ @for (width of listOfColWidth; track $index ) {
1919 <col [style.width]="width" [style.minWidth]="width" />
2020 }
2121 @if (theadTemplate) {
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import { NzResizeObserver } from 'ng-zorro-antd/cdk/resize-observer';
3030 changeDetection : ChangeDetectionStrategy . OnPush ,
3131 encapsulation : ViewEncapsulation . None ,
3232 template : `
33- @for (th of listOfMeasureColumn; track th ) {
33+ @for (th of listOfMeasureColumn; track $index ) {
3434 <td #tdElement class="nz-disable-td" style="padding: 0; border: 0; height: 0;"></td>
3535 }
3636 ` ,
You can’t perform that action at this time.
0 commit comments