Skip to content

Commit

Permalink
fixes vuetifyjs#12195: fix adding right prop
Browse files Browse the repository at this point in the history
  • Loading branch information
KareemDa committed Dec 31, 2021
1 parent c67b8ee commit df0ef63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/mixins/menuable/index.ts
Expand Up @@ -140,7 +140,7 @@ export default baseMixins.extend<options>().extend({
const minWidth = Math.max(a.width, c.width)
let left = 0
left += activatorLeft
if (this.left || this.$vuetify.rtl) left -= (minWidth - a.width)
if (this.left || (this.$vuetify.rtl && !this.right)) left -= (minWidth - a.width)
if (this.offsetX) {
const maxWidth = isNaN(Number(this.maxWidth))
? a.width
Expand Down

0 comments on commit df0ef63

Please sign in to comment.