Skip to content

Commit 5c2a42f

Browse files
committed
fix(grid): remove active method position args
1 parent 2b3d030 commit 5c2a42f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

projects/igniteui-angular/src/lib/grids/grid-base.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6400,7 +6400,7 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
64006400
const visibleColIndex = activeCell.layout ? activeCell.layout.columnVisibleIndex : activeCell.column;
64016401
this.navigateTo(rowIndex, visibleColIndex, (c) => {
64026402
if (c.targetType === 'dataCell' && c.target) {
6403-
c.target.activate(event, {rowIndex, colIndex: visibleColIndex});
6403+
c.target.activate(event);
64046404
}
64056405
});
64066406
}

projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-grid-navigation.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export class IgxHierarchicalGridNavigationService extends IgxGridNavigationServi
110110

111111
this.grid.navigateTo(0, 0, (obj) => {
112112
this.grid.clearCellSelection();
113-
obj.target.activate(event, {rowIndex: 0, colIndex: 0});
113+
obj.target.activate(event);
114114
});
115115

116116
} else {

0 commit comments

Comments
 (0)