Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Menu/ActionList.vue')
-rw-r--r--src/components/Menu/ActionList.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/Menu/ActionList.vue b/src/components/Menu/ActionList.vue
index 172404730..88142ae0d 100644
--- a/src/components/Menu/ActionList.vue
+++ b/src/components/Menu/ActionList.vue
@@ -27,9 +27,11 @@
v-bind="state"
:container="menuIDSelector"
:aria-label="actionEntry.label"
+ :force-menu="true"
:title="actionEntry.label"
:data-text-action-entry="actionEntry.key"
- :data-text-action-active="activeKey">
+ :data-text-action-active="activeKey"
+ @update:open="(o) => $emit('update:open', o)">
<template #icon>
<component :is="icon" :key="iconKey" />
</template>
@@ -39,6 +41,7 @@
:action-entry="child"
v-on="$listeners"
@trigged="onTrigger" />
+ <slot name="lastAction" />
</NcActions>
</template>