Skip to content

Commit 64e7e9c

Browse files
committed
Fix: row on hover
1 parent 1ecf3c5 commit 64e7e9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/DataTable/DataTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,14 +216,14 @@ div(:class="wrapperClassName")
216216
tr(
217217
v-for="row, index in rows",
218218
:key="`row-${index}`",
219-
v-memo="[ condensed, showTotalsInFooter, columnVisibilityData, columnContentTypes, hideScrollIndicator, hasFixedFirstColumn, truncate, verticalAlign, row]",
220219
:class="tableRowClassName",
221220
@mouseenter="handleHover(index)",
222221
@mouseleave="handleHover()",
223222
)
224223
Cell(
225224
v-for="content, cellIndex in row",
226225
:key="`cell-${cellIndex}-row-${index}`",
226+
v-memo="[ condensed, showTotalsInFooter, columnVisibilityData, columnContentTypes, hideScrollIndicator, hasFixedFirstColumn, truncate, verticalAlign]",
227227
:contentType="columnContentTypes[cellIndex]",
228228
:firstColumn="cellIndex === 0",
229229
:truncate="truncate",

0 commit comments

Comments
 (0)