Skip to content

Commit b75325c

Browse files
committed
Merge pull request #4318 from mosheshp2/move-group-fix
fix(grouping): #4318 fixes the moveGroupColumn bug, return original columns instead of null
2 parents bd0b3ea + fa6897b commit b75325c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/grouping/js/grouping.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@
608608
*/
609609
moveGroupColumns: function( grid, columns, rows ){
610610
if ( grid.options.moveGroupColumns === false){
611-
return;
611+
return columns;
612612
}
613613

614614
columns.forEach( function(column, index){

0 commit comments

Comments
 (0)