Skip to content

Commit f9b70a3

Browse files
author
tfsbuild
committed
Adding changes from build igniteui-xplat-examples-output+PRs_2024.10.29.1
1 parent 7386919 commit f9b70a3

File tree

1 file changed

+2
-1
lines changed
  • samples/grids/tree-grid/cell-editing-sample/src

1 file changed

+2
-1
lines changed

samples/grids/tree-grid/cell-editing-sample/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ export class Sample {
5959
public webTreeGridCellEditCellTemplate = (ctx: IgcCellTemplateContext) => {
6060
let cellValues: any = [];
6161
let uniqueValues: any = [];
62-
for(const i of (this.roleplayTreeGridData as any)){
62+
let roleplayData = this.roleplayTreeGridData
63+
for (const i of (roleplayData as any)){
6364
const field: string = ctx.cell.column.field;
6465
if(uniqueValues.indexOf(i[field]) === -1 )
6566
{

0 commit comments

Comments
 (0)