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:
silverwind 2023-05-19 22:12:30 +02:00 committed by GitHub
parent c641a22f2a
commit 3288252dda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export function createTippy(target, opts = {}) {
onShow: (instance) => {
// hide other tooltip instances so only one tooltip shows at a time
for (const visibleInstance of visibleInstances) {
if (visibleInstance.role === 'tooltip') {
if (visibleInstance.props.role === 'tooltip') {
visibleInstance.hide();
}
}