We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c641a22 commit 3288252Copy full SHA for 3288252
web_src/js/modules/tippy.js
@@ -20,7 +20,7 @@ export function createTippy(target, opts = {}) {
20
onShow: (instance) => {
21
// hide other tooltip instances so only one tooltip shows at a time
22
for (const visibleInstance of visibleInstances) {
23
- if (visibleInstance.role === 'tooltip') {
+ if (visibleInstance.props.role === 'tooltip') {
24
visibleInstance.hide();
25
}
26
0 commit comments