File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
common/changes/@visactor/vtable
packages/vtable/src/layout Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "changes" : [
3
+ {
4
+ "comment" : " fix: when hide pivot header find headerPath error #3791\n\n " ,
5
+ "type" : " none" ,
6
+ "packageName" : " @visactor/vtable"
7
+ }
8
+ ],
9
+ "packageName" : " @visactor/vtable" ,
10
+ "email" : " 892739385@qq.com"
11
+ }
Original file line number Diff line number Diff line change @@ -3201,10 +3201,10 @@ export class PivotHeaderLayoutMap implements LayoutMapAPI {
3201
3201
needLowestLevel_colPaths = true ;
3202
3202
needLowestLevel_rowPaths = true ;
3203
3203
}
3204
- if ( colHeaderPaths . length >= this . columnHeaderLevelCount ) {
3204
+ if ( colHeaderPaths . length >= this . _getColumnHeaderTreeExpandedMaxLevelCount ( ) ) {
3205
3205
needLowestLevel_colPaths = true ;
3206
3206
}
3207
- if ( rowHeaderPaths . length >= this . rowHeaderLevelCount ) {
3207
+ if ( rowHeaderPaths . length >= this . _getRowHeaderTreeExpandedMaxLevelCount ( ) ) {
3208
3208
needLowestLevel_rowPaths = true ;
3209
3209
}
3210
3210
let col ;
You can’t perform that action at this time.
0 commit comments