Skip to content

Commit 8b910ce

Browse files
authored
fix(ourlogs): Fix hover state on rows (#95003)
### Summary To improve performance when rendering thousands of rows, we only add hoverable actions once you've hovered a row for the first time. This keeps the hoverable elements always rendered so a re-render doesn't cause the dropdown to disappear.
1 parent 440fc71 commit 8b910ce

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

static/app/views/explore/logs/tables/logsTableRow.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,6 @@ export const LogRowContent = memo(function LogRowContent({
239239
data-test-id="log-table-row"
240240
{...rowInteractProps}
241241
onMouseEnter={() => setShouldRenderHoverElements(true)}
242-
onMouseLeave={() => setShouldRenderHoverElements(false)}
243242
>
244243
<LogsTableBodyFirstCell key={'first'}>
245244
<LogFirstCellContent>

0 commit comments

Comments
 (0)