diff --git a/components/vc-table/src/Table.jsx b/components/vc-table/src/Table.jsx index 90dce9b5c4..912138895b 100644 --- a/components/vc-table/src/Table.jsx +++ b/components/vc-table/src/Table.jsx @@ -303,10 +303,11 @@ export default { bodyRows, (acc, row) => { const rowKey = row.getAttribute('data-row-key'); - const height = - row.getBoundingClientRect().height || - state.fixedColumnsBodyRowsHeight[rowKey] || - 'auto'; + const height = 'auto'; + // const height = + // row.getBoundingClientRect().height || + // state.fixedColumnsBodyRowsHeight[rowKey] || + // 'auto'; acc[rowKey] = height; return acc; },