Tooltip not placed correctly
See original GitHub issueI have just migrated from 2.1.3 to 4.3.0 and now I have a problem with my tooltips not beeing placed correctly.
In 2.1.3 it looked like this:
And in 4.3.0 it looks like this:
Options I have set:
Vue.use(VueTippy, {
interactive: true,
theme: 'light',
animateFill: false,
arrow: true,
arrowType: 'round',
placement: 'bottom',
trigger: 'click'
})
Code:
<tippy>
<template v-slot:trigger>
<div class="checkout-item-quantity">
{{ item.node.quantity }}
</div>
</template>
<span>
<div class="checkout-item-control">
<NumberPicker
:number="item.node.quantity"
:eventmode="true"
@increase="addItem(item.node.variant.id)"
@decrease="removeItem(item.node.variant.id)"
/>
<div class="checkout-item-remove">
<LoadingIcon v-show="removing" />
<span
v-show="!removing"
@click="
removeItem(item.node.variant.id, item.node.quantity)
"
>Entfernen</span
>
</div>
</div>
</span>
</tippy>
Issue Analytics
- State:
- Created 4 years ago
- Comments:10 (6 by maintainers)
Top Results From Across the Web
javascript - Bootstrap 4.x tooltip not placed correctly when ...
The solution is to set the boundary attribute, whose default is 'scrollParent' to 'window' and everything works as expected.
Read more >React bootstrap tooltip overlay is not positioned correctly #5166
I have been working with overlays. I had created a simple tooltip using react bootstrap's Tooltip class. I have created it in such...
Read more >Tooltips - Bootstrap
The tooltip plugin generates content and markup on demand, and by default places tooltips after their trigger element. Trigger the tooltip via JavaScript:...
Read more >Positioning - Angular powered Bootstrap
Tooltip ; Typeahead. When the popup is opened, it is positioned correctly next to the target element and fits in the viewport.
Read more >Tooltip not displaying correctly on 4.5.7
Hi, I'm trying to set up a tooltip on a label next to a radio button. The label text appears, but a little...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
plz try v4.3.1
Yeah this works. This was only to let you know 😄