Skip to content
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).

## Fixed
- [#3541](https://github.com/plotly/dash/pull/3541) Remove last reference of deprecated `pkg_resources`.
- [#3520](https://github.com/plotly/dash/pull/3520). Set `pointer-events` to `auto` on `Tooltip` to make it possible to interact with tooltip content when `targetable=True`


## [3.3.0] - 2025-11-12

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const Tooltip = ({
background: ${background_color};
white-space: nowrap;
z-index: ${zindex};
pointer-events: none;
pointer-events: ${targetable ? 'auto' : 'none'};
}
.hover .hover-content,
.hover-right .hover-content {
Expand Down
Loading