diff --git a/client/src/components/Logs/Cells/Tooltip.css b/client/src/components/Logs/Cells/Tooltip.css
index 6f4b11fd..30e5cded 100644
--- a/client/src/components/Logs/Cells/Tooltip.css
+++ b/client/src/components/Logs/Cells/Tooltip.css
@@ -6,6 +6,8 @@
pointer-events: auto !important;
background-color: var(--white);
z-index: 102;
+ overflow-y: scroll;
+ max-height: 100%;
}
.white-space--nowrap {
@@ -65,10 +67,6 @@
.grid .key-colon, .grid .title--border {
font-weight: bold;
}
-
- .tooltip__container {
- overflow-y: scroll;
- }
}
.grid .key-colon:nth-child(odd)::after {
diff --git a/client/src/components/Logs/Cells/getHintElement.js b/client/src/components/Logs/Cells/getHintElement.js
index 30c62daa..dcb5fed1 100644
--- a/client/src/components/Logs/Cells/getHintElement.js
+++ b/client/src/components/Logs/Cells/getHintElement.js
@@ -5,6 +5,7 @@ import { Trans } from 'react-i18next';
import classNames from 'classnames';
import './Tooltip.css';
import 'react-popper-tooltip/dist/styles.css';
+import { HIDE_TOOLTIP_DELAY } from '../../../helpers/constants';
const getHintElement = ({
className,
@@ -22,7 +23,7 @@ const getHintElement = ({
{item || '—'}
,
),
-}) =>