VizTooltip: Hide on page scroll even if anchored (#91084)

changelog/10118284765/11.1.3
Leon Sorokin 10 months ago committed by GitHub
parent 1503c82ae9
commit 90349b21f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/grafana-ui/src/components/uPlot/plugins/TooltipPlugin2.tsx

@ -580,7 +580,7 @@ export const TooltipPlugin2 = ({
const onscroll = (e: Event) => {
updatePlotVisible();
_isHovering && !_isPinned && e.target instanceof HTMLElement && e.target.contains(_plot!.root) && dismiss();
_isHovering && e.target instanceof HTMLElement && e.target.contains(_plot!.root) && dismiss();
};
window.addEventListener('resize', updateWinSize);

Loading…
Cancel
Save