mirror of https://github.com/go-gitea/gitea.git
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.
This commit is contained in:
parent
c641a22f2a
commit
3288252dda
|
@ -20,7 +20,7 @@ export function createTippy(target, opts = {}) {
|
||||||
onShow: (instance) => {
|
onShow: (instance) => {
|
||||||
// hide other tooltip instances so only one tooltip shows at a time
|
// hide other tooltip instances so only one tooltip shows at a time
|
||||||
for (const visibleInstance of visibleInstances) {
|
for (const visibleInstance of visibleInstances) {
|
||||||
if (visibleInstance.role === 'tooltip') {
|
if (visibleInstance.props.role === 'tooltip') {
|
||||||
visibleInstance.hide();
|
visibleInstance.hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue