We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3ffe00 commit 48268eaCopy full SHA for 48268ea
packages/floating-vue/src/components/Popper.ts
@@ -467,12 +467,12 @@ const createPopper = () => defineComponent({
467
if (this.parentPopper) {
468
this.parentPopper.lockedChild = this
469
clearTimeout(this.parentPopper.lockedChildTimer)
470
- this.parentPopper.lockedChildTimer = setTimeout(() => {
471
- if (this.parentPopper.lockedChild === this) {
472
- this.parentPopper.lockedChild.hide({ skipDelay })
473
- this.parentPopper.lockedChild = null
474
- }
475
- }, 1000)
+ // this.parentPopper.lockedChildTimer = setTimeout(() => {
+ // if (this.parentPopper.lockedChild !== this) {
+ // this.parentPopper.lockedChild.hide({ skipDelay })
+ // this.parentPopper.lockedChild = null
+ // }
+ // }, 1000)
476
}
477
return
478
0 commit comments