mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 20:59:31 +01:00
Only hide tooltip tippy instances (#24688)
Fix regression from https://github.com/go-gitea/gitea/pull/24648 where it was hiding non-tooltip tippy instances, like for example in the review panel which itself is a tippy instance, but with a different `role`.
This commit is contained in:
parent
b20e5f9cd8
commit
80bde0141b
1 changed files with 4 additions and 1 deletions
|
@ -18,8 +18,11 @@ export function createTippy(target, opts = {}) {
|
|||
visibleInstances.delete(instance);
|
||||
},
|
||||
onShow: (instance) => {
|
||||
// hide other tooltip instances so only one tooltip shows at a time
|
||||
for (const visibleInstance of visibleInstances) {
|
||||
visibleInstance.hide(); // hide other instances
|
||||
if (visibleInstance.role === 'tooltip') {
|
||||
visibleInstance.hide();
|
||||
}
|
||||
}
|
||||
visibleInstances.add(instance);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue