Skip to content

Commit

Permalink
fix: control buttons not present sometimes (#2051)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan662 authored Dec 28, 2023
1 parent 7c16f2b commit 87d6413
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const RowList: React.FC<Props> = React.memo(function RowList({

return (
<StyledContainer
onMouseEnter={() => setHover(true)}
onMouseOver={() => setHover(true)}
onMouseLeave={() => setHover(false)}
onFocus={() => setFocus(true)}
onBlur={() => setFocus(false)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const RowTable: React.FC<Props> = React.memo(function RowTable({

return (
<StyledContainer
onMouseEnter={() => setHover(true)}
onMouseOver={() => setHover(true)}
onMouseLeave={() => setHover(false)}
onFocus={() => setFocus(true)}
onBlur={() => setFocus(false)}
Expand Down

0 comments on commit 87d6413

Please sign in to comment.