@homebound/beam 3.42.3 → 3.42.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6484,7 +6484,7 @@ var ColumnStates = class {
|
|
|
6484
6484
|
}
|
|
6485
6485
|
setVisibleColumns(ids) {
|
|
6486
6486
|
for (const cs of this.map.values()) {
|
|
6487
|
-
cs.setVisible(ids.includes(cs.column.id));
|
|
6487
|
+
cs.setVisible(cs.column.isLayoutGutter ? true : ids.includes(cs.column.id));
|
|
6488
6488
|
}
|
|
6489
6489
|
}
|
|
6490
6490
|
loadExpanded(storageKey) {
|