Fixes dropdown target without a `buttonRef` (edit history) (#28427)

th-downstream
Renaud Chaput 11 months ago committed by GitHub
parent fa987db738
commit 7b1d390734
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -257,7 +257,7 @@ class Dropdown extends PureComponent {
};
findTarget = () => {
return this.target?.buttonRef?.current;
return this.target?.buttonRef?.current ?? this.target;
};
componentWillUnmount = () => {

Loading…
Cancel
Save