Skip to content

Commit 9b3d203

Browse files
docs: update components CHANGELOG.md
1 parent f2c819e commit 9b3d203

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

packages/components/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
### Bug Fixes
6+
- `Tooltip`: Ensure tooltips do not capture pointer events, allowing clicks to pass through to underlying elements ([#77415](https://github.com/WordPress/gutenberg/pull/77415)).
7+
58
### Breaking Changes
69

710
- `ExternalLink`: No longer adds `noreferrer` to the `rel` attribute. `noopener` is still applied. Consumers relying on the previous behavior should pass `rel="noopener noreferrer"` explicitly ([#26968](https://github.com/WordPress/gutenberg/pull/26968)).

packages/components/src/tooltip/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ function UnforwardedTooltip(
123123
id={ describedById }
124124
overflowPadding={ 0.5 }
125125
store={ tooltipStore }
126-
disablePointerEventsOnApproach={false}
127-
wrapperProps={{ style: { pointerEvents: 'none' } }}
126+
disablePointerEventsOnApproach={ false }
127+
wrapperProps={ { style: { pointerEvents: 'none' } } }
128128
>
129129
{ text }
130130
{ shortcut && (

0 commit comments

Comments
 (0)