Skip to content

Commit 2ac45d5

Browse files
committed
[nested-v-grid] Don't show root-header cells
1 parent e5f7b93 commit 2ac45d5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/re_com/nested_v_grid.cljs

+2
Original file line numberDiff line numberDiff line change
@@ -631,6 +631,7 @@
631631
(cond-> (dec path-ct) (not show-root-headers?) dec))
632632
size (get @row-sizes i)
633633
keypath (get @row-keypaths i)]
634+
:when (or show-root-headers? (pos? i))
634635
:let [props {:part ::row-header
635636
:row-path row-path-prop
636637
:path row-path-prop
@@ -673,6 +674,7 @@
673674
column-path-prop (cond-> column-path (not show-root-headers?) (subvec 1))
674675
keypath (get @column-keypaths i)]
675676
#_#_:when (not branch-end?)
677+
:when (or show-root-headers? (pos? i))
676678
:let [props {:part ::column-header
677679
:column-path column-path-prop
678680
:path column-path-prop

0 commit comments

Comments
 (0)