Skip to content

Commit 6657a9b

Browse files
authored
Merge pull request #3520 from AnnMarieW/make-targetable-tooltip-interactive
Makes targetable Tooltips interactive
2 parents f7bb866 + adb8d50 commit 6657a9b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1010

1111
## Fixed
1212
- [#3541](https://github.com/plotly/dash/pull/3541) Remove last reference of deprecated `pkg_resources`.
13+
- [#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`
14+
1315

1416
## [3.3.0] - 2025-11-12
1517

components/dash-core-components/src/components/Tooltip.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const Tooltip = ({
8383
background: ${background_color};
8484
white-space: nowrap;
8585
z-index: ${zindex};
86-
pointer-events: none;
86+
pointer-events: ${targetable ? 'auto' : 'none'};
8787
}
8888
.hover .hover-content,
8989
.hover-right .hover-content {

0 commit comments

Comments
 (0)