@@ -390,7 +390,7 @@ describe('igxGridEditingActions #grid ', () => {
390390 template : `
391391 <igx-grid #grid [data]="data" [width]="'800px'" [height]="'500px'"
392392 [rowEditable]="true" [primaryKey]="'ID'">
393- @for (c of columns; track c) {
393+ @for (c of columns; track c.field ) {
394394 <igx-column [sortable]="true" [field]="c.field" [header]="c.field"
395395 [width]="c.width" [pinned]='c.pinned' [hidden]='c.hidden'>
396396 </igx-column>
@@ -469,7 +469,7 @@ class IgxActionStripTestingComponent implements OnInit {
469469 template : `
470470 <igx-grid #grid [data]="data" [width]="'800px'" [height]="'500px'"
471471 [rowEditable]="true" [primaryKey]="'ID'">
472- @for (c of columns; track c) {
472+ @for (c of columns; track c.field ) {
473473 <igx-column [sortable]="true" [field]="c.field" [header]="c.field"
474474 [width]="c.width" [pinned]='c.pinned' [hidden]='c.hidden'>
475475 </igx-column>
@@ -491,7 +491,7 @@ class IgxActionStripPinEditComponent extends IgxActionStripTestingComponent {
491491 template : `
492492 <igx-grid #grid [data]="data" [width]="'800px'" [height]="'500px'"
493493 [rowEditable]="true" [primaryKey]="'ID'">
494- @for (c of columns; track c) {
494+ @for (c of columns; track c.field ) {
495495 <igx-column [sortable]="true" [field]="c.field" [header]="c.field"
496496 [width]="c.width" [pinned]='c.pinned' [hidden]='c.hidden'>
497497 </igx-column>
@@ -512,7 +512,7 @@ class IgxActionStripEditMenuComponent extends IgxActionStripTestingComponent {
512512 template : `
513513 <igx-grid #grid [data]="dataOneRow" [width]="'800px'" [height]="'500px'"
514514 [rowEditable]="true" [primaryKey]="'ID'">
515- @for (c of columns; track c) {
515+ @for (c of columns; track c.field ) {
516516 <igx-column [sortable]="true" [field]="c.field" [header]="c.field"
517517 [width]="c.width" [pinned]='c.pinned' [hidden]='c.hidden'>
518518 </igx-column>
@@ -534,7 +534,7 @@ class IgxActionStripOneRowComponent extends IgxActionStripTestingComponent {
534534 template : `
535535 <igx-grid #grid [data]="dataOneRow" [width]="'800px'" [height]="'500px'"
536536 [rowEditable]="true" [primaryKey]="'ID'">
537- @for (c of columns; track c) {
537+ @for (c of columns; track c.field ) {
538538 <igx-column [sortable]="true" [field]="c.field" [header]="c.field"
539539 [width]="c.width" [pinned]='c.pinned' [hidden]='c.hidden'>
540540 </igx-column>
0 commit comments