Skip to content

Commit

Permalink
Fix bug where column group borders were not being properly defaulted (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ghsolomon authored Oct 18, 2023
1 parent 710543b commit a65b3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmp/grid/GridModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1461,7 +1461,7 @@ export class GridModel extends HoistModel {
if (omit) return null;

if (this.isGroupSpec(config)) {
if (config.borders) borderedGroup = config;
if (config.borders !== false) borderedGroup = config;
const children = compact(
config.children.map(c => this.buildColumn(c, borderedGroup))
) as Array<ColumnGroup | Column>;
Expand Down

0 comments on commit a65b3f3

Please sign in to comment.