Skip to content

Commit 3f444a9

Browse files
HristoP96HristoP96
authored andcommitted
fix(grid): Set onSortingDone to be emitted after pipes trggers 90x. Closes #6707
1 parent dc2defc commit 3f444a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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
@@ -3782,7 +3782,7 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
37823782
} else {
37833783
this.gridAPI.sort(expression);
37843784
}
3785-
this.onSortingDone.emit(expression);
3785+
requestAnimationFrame(() => this.onSortingDone.emit(expression));
37863786
}
37873787

37883788
/**

0 commit comments

Comments
 (0)