Skip to content

Commit 9bad024

Browse files
authored
Merge branch 'master' into sstoychev/cancel-add-improv-master
2 parents 968a640 + a70c819 commit 9bad024

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

projects/igniteui-angular/src/lib/directives/for-of/for_of.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export class IgxForOfDirective<T> implements OnInit, OnChanges, DoCheck, OnDestr
9292
* ```
9393
*/
9494
@Input()
95-
public igxForOf: any[];
95+
public igxForOf: any[] | null;
9696

9797
/**
9898
* An @Input property that sets the property name from which to read the size in the data object.

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -672,9 +672,6 @@ export class IgxGridCellComponent implements OnInit, OnChanges, OnDestroy {
672672
// prevent double-tap to zoom on iOS
673673
(event as HammerInput).preventDefault();
674674
}
675-
if (this.grid.rowEditable && this.intRow.addRow) {
676-
this.grid.crudService.enterEditMode(this, event as Event);
677-
}
678675
if (this.editable && !this.editMode && !this.intRow.deleted && !this.grid.crudService.rowEditingBlocked) {
679676
this.grid.crudService.enterEditMode(this, event as Event);
680677
}

0 commit comments

Comments
 (0)