loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix duplicate tooltip hiding (#24814)

A tippy instance's role is actually on `props.role`. This makes
duplicate tooltip hiding work again after
https://github.com/go-gitea/gitea/pull/24688.

authored by

silverwind and committed by
GitHub
3288252d c641a22f

+1 -1
+1 -1
web_src/js/modules/tippy.js
··· 20 20 onShow: (instance) => { 21 21 // hide other tooltip instances so only one tooltip shows at a time 22 22 for (const visibleInstance of visibleInstances) { 23 - if (visibleInstance.role === 'tooltip') { 23 + if (visibleInstance.props.role === 'tooltip') { 24 24 visibleInstance.hide(); 25 25 } 26 26 }