Skip to content

Commit 79f4428

Browse files
authored
Merge pull request #9786 from IgniteUI/change-cell-row-add
fix(grid): allow chaning cell without edit in row add
2 parents 80f88e5 + 9b2e601 commit 79f4428

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/cell.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ export class IgxGridCellComponent implements OnInit, OnChanges, OnDestroy {
991991
this.grid.cdr.detectChanges();
992992
}
993993

994-
if (editableArgs.cancel) {
994+
if (editableArgs && editableArgs.cancel) {
995995
return true;
996996
}
997997

0 commit comments

Comments
 (0)