diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-01-14 17:16:27 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-01-14 17:32:13 +0100 |
commit | 428907c685e31e765a0971b1de990eb5543b85d5 (patch) | |
tree | 7b7c835e71f732d105f7525b52a06f2423a4d83f /apps/updatenotification/src | |
parent | b9287f9780c6743f0f5e2db84fe32c470cf70b22 (diff) | |
download | nextcloud-server-428907c685e31e765a0971b1de990eb5543b85d5.tar.gz nextcloud-server-428907c685e31e765a0971b1de990eb5543b85d5.zip |
Fix @nextcloud/vue imports
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/updatenotification/src')
-rw-r--r-- | apps/updatenotification/src/components/UpdateNotification.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue index ac862ce1a24..d67d9d45beb 100644 --- a/apps/updatenotification/src/components/UpdateNotification.vue +++ b/apps/updatenotification/src/components/UpdateNotification.vue @@ -110,7 +110,8 @@ <script> import { generateUrl, getRootUrl, generateOcsUrl } from '@nextcloud/router' -import { PopoverMenu, Multiselect } from '@nextcloud/vue' +import PopoverMenu from '@nextcloud/vue/dist/Components/PopoverMenu' +import Multiselect from '@nextcloud/vue/dist/Components/Multiselect' import { VTooltip } from 'v-tooltip' import ClickOutside from 'vue-click-outside' |