From 87d641360a0ca2de3546b5b53ac7045aef82142a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Gran=C3=A1t?= Date: Thu, 28 Dec 2023 13:14:59 +0100 Subject: [PATCH] fix: control buttons not present sometimes (#2051) --- .../views/projects/translations/TranslationsList/RowList.tsx | 2 +- .../views/projects/translations/TranslationsTable/RowTable.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/src/views/projects/translations/TranslationsList/RowList.tsx b/webapp/src/views/projects/translations/TranslationsList/RowList.tsx index 52c61a56bc..e548840093 100644 --- a/webapp/src/views/projects/translations/TranslationsList/RowList.tsx +++ b/webapp/src/views/projects/translations/TranslationsList/RowList.tsx @@ -71,7 +71,7 @@ export const RowList: React.FC = React.memo(function RowList({ return ( setHover(true)} + onMouseOver={() => setHover(true)} onMouseLeave={() => setHover(false)} onFocus={() => setFocus(true)} onBlur={() => setFocus(false)} diff --git a/webapp/src/views/projects/translations/TranslationsTable/RowTable.tsx b/webapp/src/views/projects/translations/TranslationsTable/RowTable.tsx index 876b4b8cd0..b2c56f7118 100644 --- a/webapp/src/views/projects/translations/TranslationsTable/RowTable.tsx +++ b/webapp/src/views/projects/translations/TranslationsTable/RowTable.tsx @@ -69,7 +69,7 @@ export const RowTable: React.FC = React.memo(function RowTable({ return ( setHover(true)} + onMouseOver={() => setHover(true)} onMouseLeave={() => setHover(false)} onFocus={() => setFocus(true)} onBlur={() => setFocus(false)}