fix tooltip blinking at the edges (#1813)

This commit is contained in:
Riccardo Balbo 2025-01-07 15:18:35 +01:00 committed by GitHub
parent b37a12bf71
commit 511b0eea40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ export function BadgeTooltip ({ children, overlayText, placement }) {
<OverlayTrigger
placement={placement || 'bottom'}
overlay={
<Tooltip>
<Tooltip style={{ position: 'fixed' }}>
{overlayText}
</Tooltip>
}