We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2750554 commit ca663abCopy full SHA for ca663ab
packages/ve-table/src/colgroup/index.jsx
@@ -19,8 +19,10 @@ export default {
19
let width;
20
// 开启 column resize
21
if (enableColumnResize) {
22
- // 解决使用 _realTimeWidth 在多表头下宽度计算异常的问题
23
- width = item._realTimeWidth ? item._realTimeWidth : item.width;
+ // 解决使用 _columnResizeWidth 在多表头下宽度计算异常的问题
+ width = item._columnResizeWidth
24
+ ? item._columnResizeWidth
25
+ : item.width;
26
} else {
27
width = item.width;
28
}
0 commit comments