actually fix submenu pos

This commit is contained in:
Freeplay 2023-02-12 22:31:55 -05:00
parent 06b37eccdd
commit a5a6d90771
1 changed files with 13 additions and 13 deletions

View File

@ -1,5 +1,6 @@
<template>
<div tabindex="-1" v-focus>
<FocusTrap v-bind:active="isActive">
<div
ref="itemsEl"
class="rrevdjwt _popup _shadow"
@ -7,7 +8,6 @@
:style="{ width: (width && !asDrawer) ? width + 'px' : '', maxHeight: maxHeight ? maxHeight + 'px' : '' }"
@contextmenu.self="e => e.preventDefault()"
>
<FocusTrap v-bind:active="isActive">
<template v-for="(item, i) in items2">
<div v-if="item === null" class="divider"></div>
<span v-else-if="item.type === 'label'" class="label item">
@ -49,11 +49,11 @@
<span v-if="items2.length === 0" class="none item">
<span>{{ i18n.ts.none }}</span>
</span>
</FocusTrap>
</div>
<div v-if="childMenu" class="child">
<XChild ref="child" :items="childMenu" :target-element="childTarget" :root-element="itemsEl" showing @actioned="childActioned"/>
</div>
</FocusTrap>
</div>
</template>