Skip to content

Commit 785a0e1

Browse files
HristoP96HristoP96
authored andcommitted
fix(grid): Set onSortingDone to be emitted after pipes trggers 82x. Closes #6707
1 parent fcb3b88 commit 785a0e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3970,7 +3970,7 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
39703970
} else {
39713971
this.gridAPI.sort(expression);
39723972
}
3973-
this.onSortingDone.emit(expression);
3973+
requestAnimationFrame(() => this.onSortingDone.emit(expression));
39743974
}
39753975

39763976
/**

0 commit comments

Comments
 (0)