修复 itemActions 位置问题

This commit is contained in:
liaoxuezhi 2019-09-09 10:12:55 +08:00
parent 169e8d78f4
commit fabdbd98fd
1 changed files with 1 additions and 1 deletions

View File

@ -1445,7 +1445,7 @@ export default class Table extends React.Component<TableProps, object> {
height = heights[rowIndex];
top += heights.header;
for (let i = rowIndex - 1; i >= 0; i--) {
top += heights[i] + 1;
top += heights[i];
}
}