Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/components/Tooltip/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,9 @@ const Tooltip = ({
const newId = (mutation.target as HTMLElement).getAttribute('data-tooltip-id')
if (newId === id) {
newAnchors.push(mutation.target as HTMLElement)
} else if (mutation.oldValue === id) {
// data-tooltip-id has now been changed, so we need to remove this anchor
removedAnchors.push(mutation.target as HTMLElement)
}
}
if (mutation.type !== 'childList') {
Expand Down Expand Up @@ -727,6 +730,8 @@ const Tooltip = ({
subtree: true,
attributes: true,
attributeFilter: ['data-tooltip-id'],
// to track the prev value if we need to remove anchor when data-tooltip-id gets changed
attributeOldValue: true,
})
return () => {
documentObserver.disconnect()
Expand Down