Skip to content

Commit

Permalink
fix: bugserver case error
Browse files Browse the repository at this point in the history
  • Loading branch information
fangsmile committed Jun 14, 2024
1 parent e61d7d6 commit a36e7fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vtable/src/layout/pivot-header-layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ export class PivotHeaderLayoutMap implements LayoutMapAPI {
if (this.columnHeaderTitle) {
this.sharedVar.seqId = Math.max(this.sharedVar.seqId, this._headerObjects.length);
const id = ++this.sharedVar.seqId;
const firstRowIds = Array(this.colCount - this.rowHeaderLevelCount).fill(id);
const firstRowIds = Array(this.colCount - this.rowHeaderLevelCount - this.rightFrozenColCount).fill(id);
this._columnHeaderCellFullPathIds.unshift(firstRowIds);
const cell: HeaderData = {
id,
Expand Down

0 comments on commit a36e7fc

Please sign in to comment.