We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee47b62 commit 2bfc78dCopy full SHA for 2bfc78d
1 file changed
packages/vtable/src/core/BaseTable.ts
@@ -1607,11 +1607,11 @@ export abstract class BaseTable extends EventTarget implements BaseTableAPI {
1607
}
1608
h = this.rowHeightsMap.getSumInRange(startRow, endRow);
1609
1610
- // if (this.options._disableColumnAndRowSizeRound) {
1611
- // // console.log(startRow, endRow, Number(h.toFixed(2)));
1612
- // // return Number(h.toFixed(2));
1613
- // return h;
1614
- // }
+ if (this.options.customConfig?._disableColumnAndRowSizeRound) {
+ // console.log(startRow, endRow, Number(h.toFixed(2)));
+ // return Number(h.toFixed(2));
+ return h;
+ }
1615
return Math.round(h);
1616
1617
/**
0 commit comments