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.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/Menu/ActionList.vue b/src/components/Menu/ActionList.vue
index 2c71b3d60..88d170aaa 100644
--- a/src/components/Menu/ActionList.vue
+++ b/src/components/Menu/ActionList.vue
@@ -21,7 +21,7 @@
-->
<template>
- <Actions v-tooltip="tooltip"
+ <NcActions v-tooltip="tooltip"
class="entry-list-action entry-action"
role="menu"
v-bind="state"
@@ -37,11 +37,11 @@
is-item
:action-entry="child"
@trigged="onTrigger" />
- </Actions>
+ </NcActions>
</template>
<script>
-import Actions from '@nextcloud/vue/dist/Components/Actions.js'
+import NcActions from '@nextcloud/vue/dist/Components/NcActions.js'
import { BaseActionEntry } from './BaseActionEntry.js'
import ActionSingle from './ActionSingle.vue'
import { getIsActive } from './utils.js'
@@ -50,7 +50,7 @@ import useStore from '../../mixins/store.js'
export default {
name: 'ActionList',
- components: { Actions, ActionSingle },
+ components: { NcActions, ActionSingle },
extends: BaseActionEntry,
mixins: [useStore, useOutlineStateMixin],
computed: {