mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-04-06 14:30:46 +08:00
fix(data-table): remove the incorrect fix of wrong col index
This commit is contained in:
parent
dd2e4aaa8f
commit
b96dce5885
@ -785,8 +785,8 @@ export default defineComponent({
|
||||
const virtualXRowHeight = isVirtualX
|
||||
? pxfy(heightForRow?.(rowData, actualRowIndex) || minRowHeight)
|
||||
: undefined
|
||||
const cells = iteratedCols.map((col, colIdx) => {
|
||||
const colIndex = isVirtualX ? col.index : colIdx
|
||||
const cells = iteratedCols.map((col) => {
|
||||
const colIndex = col.index
|
||||
if (displayedRowIndex in cordToPass) {
|
||||
const cordOfRowToPass = cordToPass[displayedRowIndex]
|
||||
const indexInCordOfRowToPass
|
||||
|
Loading…
x
Reference in New Issue
Block a user