Skip to content

Commit 464529a

Browse files
fix(VMenu): disabled activatorFixed when attach is enabled (#15709)
fixes #14922
1 parent 381fdb5 commit 464529a

File tree

1 file changed

+4
-1
lines changed
  • packages/vuetify/src/mixins/menuable

1 file changed

+4
-1
lines changed

packages/vuetify/src/mixins/menuable/index.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,10 @@ export default baseMixins.extend<options>().extend({
281281
}
282282
},
283283
checkActivatorFixed () {
284-
if (this.attach !== false) return
284+
if (this.attach !== false) {
285+
this.activatorFixed = false
286+
return
287+
}
285288
let el = this.getActivator()
286289
while (el) {
287290
if (window.getComputedStyle(el).position === 'fixed') {

0 commit comments

Comments
 (0)