summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco <marcoambrosini@icloud.com>2022-11-29 10:14:23 +0100
committerMarco <marcoambrosini@icloud.com>2023-01-24 15:09:08 +0000
commite04756999c837bf93062704d1d64cafef3d83e80 (patch)
tree3398a4339535c933da236b201b46d84a12fa4e46
parent9ceef4acd39dba8f75d0b565de62b3d564b8c77b (diff)
Fix missing import
-rw-r--r--src/components/TopBar/TopBarMenu.vue2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/TopBar/TopBarMenu.vue b/src/components/TopBar/TopBarMenu.vue
index 579bfbe49..5bc7968d3 100644
--- a/src/components/TopBar/TopBarMenu.vue
+++ b/src/components/TopBar/TopBarMenu.vue
@@ -140,6 +140,7 @@
<script>
import NcActions from '@nextcloud/vue/dist/Components/NcActions.js'
import NcActionSeparator from '@nextcloud/vue/dist/Components/NcActionSeparator.js'
+import NcActionLink from '@nextcloud/vue/dist/Components/NcActionLink.js'
import NcActionButton from '@nextcloud/vue/dist/Components/NcActionButton.js'
import { emit } from '@nextcloud/event-bus'
import { generateUrl } from '@nextcloud/router'
@@ -168,6 +169,7 @@ export default {
components: {
NcActions,
NcActionSeparator,
+ NcActionLink,
NcActionButton,
PromotedView,
Cog,