Fixed #5030 - Tooltip: Malfunction inside Links

pull/5098/head
mertsincan 2024-01-15 01:19:19 +00:00
parent 1fcefea636
commit 1c659292e3
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ export default {
getParentNode(element) {
let parent = element?.parentNode;
if (parent && parent.host) {
if (parent && parent instanceof ShadowRoot && parent.host) {
parent = parent.host;
}