Skip to content

Commit e9534de

Browse files
committed
fix: fix columns track by in @for loop
1 parent e3cc61b commit e9534de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/gantt/src/components/table/body/gantt-table-body.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
[ngTemplateOutlet]="rowBeforeTemplate"
5252
[ngTemplateOutletContext]="{ $implicit: item.origin, item: item.origin }"
5353
></ng-template>
54-
@for (column of columns; track column; let first = $first) {
54+
@for (column of columns; track $index; let first = $first) {
5555
<div [classList]="column.classList" [style.width]="column.columnWidth">
5656
<!-- drag icon -->
5757
@if (first && draggable) {

packages/gantt/src/components/table/header/gantt-table-header.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="gantt-table-header-container">
2-
@for (column of columns; track column; let i = $index) {
2+
@for (column of columns; track $index) {
33
<div class="gantt-table-column" [style.width]="column.columnWidth">
44
@if (column.headerTemplateRef) {
55
<ng-container [ngTemplateOutlet]="column.headerTemplateRef"> </ng-container>

0 commit comments

Comments
 (0)