Skip to content

Commit

Permalink
fix: fix non-int cell height
Browse files Browse the repository at this point in the history
  • Loading branch information
Rui-Sun committed May 11, 2024
1 parent 861c433 commit 66d00cb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ export function createComplexColumn(
// 处理单元格合并
let cellWidth = colWidth;
// let cellHeight = table.internalProps.autoRowHeight ? 0 : table.getRowHeight(row);
let cellHeight = table.getRowHeight(row);
let cellHeight = Math.round(table.getRowHeight(row));
// let cellHeight = table.getRowHeight(row);
let range;
let isMerge;
let customStyle;
Expand Down

0 comments on commit 66d00cb

Please sign in to comment.