aboutsummaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/src
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-08-22 14:29:58 +0200
committerVincent Petry <vincent@nextcloud.com>2022-08-25 08:38:00 +0200
commitd0473214cd2582ec63f4a5021a8f5927f67bc98f (patch)
tree455708226929d13d55e24bde90833e1508a38714 /apps/updatenotification/src
parent708018795863999b674d1e3e900313785893d6a8 (diff)
downloadnextcloud-server-d0473214cd2582ec63f4a5021a8f5927f67bc98f.tar.gz
nextcloud-server-d0473214cd2582ec63f4a5021a8f5927f67bc98f.zip
Add Nc prefix to Nc vue component names
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps/updatenotification/src')
-rw-r--r--apps/updatenotification/src/components/UpdateNotification.vue14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue
index 5039ac22bb7..c18d65caa70 100644
--- a/apps/updatenotification/src/components/UpdateNotification.vue
+++ b/apps/updatenotification/src/components/UpdateNotification.vue
@@ -63,7 +63,7 @@
<div class="toggleWhatsNew">
<a v-click-outside="hideMenu" class="button" @click="toggleMenu">{{ t('updatenotification', 'What\'s new?') }}</a>
<div class="popovermenu" :class="{ 'menu-center': true, open: openedWhatsNew }">
- <PopoverMenu :menu="whatsNew" />
+ <NcPopoverMenu :menu="whatsNew" />
</div>
</div>
</div>
@@ -96,7 +96,7 @@
<span class="icon-triangle-s" />
</span>
<div class="popovermenu menu menu-center" :class="{ 'show-menu': openedUpdateChannelMenu}">
- <PopoverMenu :menu="channelList" />
+ <NcPopoverMenu :menu="channelList" />
</div>
</div>
</h3>
@@ -108,7 +108,7 @@
<p id="oca_updatenotification_groups">
{{ t('updatenotification', 'Notify members of the following groups about available updates:') }}
- <Multiselect v-model="notifyGroups"
+ <NcMultiselect v-model="notifyGroups"
:options="availableGroups"
:multiple="true"
label="label"
@@ -123,8 +123,8 @@
<script>
import { generateUrl, getRootUrl, generateOcsUrl } from '@nextcloud/router'
-import PopoverMenu from '@nextcloud/vue/dist/Components/PopoverMenu'
-import Multiselect from '@nextcloud/vue/dist/Components/Multiselect'
+import NcPopoverMenu from '@nextcloud/vue/dist/Components/NcPopoverMenu'
+import NcMultiselect from '@nextcloud/vue/dist/Components/NcMultiselect'
import { VTooltip } from 'v-tooltip'
import ClickOutside from 'vue-click-outside'
@@ -133,8 +133,8 @@ VTooltip.options.defaultHtml = false
export default {
name: 'UpdateNotification',
components: {
- Multiselect,
- PopoverMenu,
+ NcMultiselect,
+ NcPopoverMenu,
},
directives: {
ClickOutside,