Skip to content

Commit b7c4fd7

Browse files
committed
chore(*): remove redundant check
1 parent e3380de commit b7c4fd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export class IgxPivotGridNavigationService extends IgxGridNavigationService {
133133
const dimIndex = this.activeNode.column;
134134
const flatRowDImensions = PivotUtil.flatten(this.grid.rowDimensions)
135135
const dim = flatRowDImensions[dimIndex];
136-
if (dimIndex === 0 && this.activeNode.row === -1) {
136+
if (this.activeNode.row === -1) {
137137
if (key.includes('down') || key.includes('up')) {
138138
let newSortDirection = SortingDirection.None;
139139
if (key.includes('down')) {

0 commit comments

Comments
 (0)