Skip to content

Commit

Permalink
fix spacing issue in grouprows module
Browse files Browse the repository at this point in the history
  • Loading branch information
olifolkerd committed Sep 7, 2022
1 parent 81e1f15 commit e411a68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions dist/js/tabulator_esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -11983,8 +11983,7 @@ class GroupRows extends Module{

// get grouped table data in the same format as getData()
userGetGroupedData(){
return this.table.options.groupBy ?
this.getGroupedData() : this.getData();
return this.table.options.groupBy ? this.getGroupedData() : this.getData();
}


Expand Down
2 changes: 1 addition & 1 deletion dist/js/tabulator_esm.js.map

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions src/js/modules/GroupRows/GroupRows.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,7 @@ class GroupRows extends Module{

// get grouped table data in the same format as getData()
userGetGroupedData(){
return this.table.options.groupBy ?
this.getGroupedData() : this.getData();
return this.table.options.groupBy ? this.getGroupedData() : this.getData();
}


Expand Down

0 comments on commit e411a68

Please sign in to comment.