Skip to content

Commit 8e4bae0

Browse files
HristoP96HristoP96
authored andcommitted
fix(grid): Set onSortingDone to be emitted after pipes trggers. Closes #6707
1 parent 054a622 commit 8e4bae0

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
@@ -3834,7 +3834,7 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
38343834
} else {
38353835
this.gridAPI.sort(expression);
38363836
}
3837-
this.onSortingDone.emit(expression);
3837+
requestAnimationFrame(() => this.onSortingDone.emit(expression));
38383838
}
38393839

38403840
/**

0 commit comments

Comments
 (0)