diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-08-22 14:29:58 +0200 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2022-08-25 08:38:00 +0200 |
commit | d0473214cd2582ec63f4a5021a8f5927f67bc98f (patch) | |
tree | 455708226929d13d55e24bde90833e1508a38714 /apps/files/src/components/SidebarTab.vue | |
parent | 708018795863999b674d1e3e900313785893d6a8 (diff) | |
download | nextcloud-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/files/src/components/SidebarTab.vue')
-rw-r--r-- | apps/files/src/components/SidebarTab.vue | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/files/src/components/SidebarTab.vue b/apps/files/src/components/SidebarTab.vue index ad80f91d431..c0f5a7d4416 100644 --- a/apps/files/src/components/SidebarTab.vue +++ b/apps/files/src/components/SidebarTab.vue @@ -21,30 +21,30 @@ - --> <template> - <AppSidebarTab :id="id" + <NcAppSidebarTab :id="id" ref="tab" :name="name" :icon="icon" @bottomReached="onScrollBottomReached"> <!-- Fallback loading --> - <EmptyContent v-if="loading" icon="icon-loading" /> + <NcEmptyContent v-if="loading" icon="icon-loading" /> <!-- Using a dummy div as Vue mount replace the element directly It does NOT append to the content --> <div ref="mount" /> - </AppSidebarTab> + </NcAppSidebarTab> </template> <script> -import AppSidebarTab from '@nextcloud/vue/dist/Components/AppSidebarTab' -import EmptyContent from '@nextcloud/vue/dist/Components/EmptyContent' +import NcAppSidebarTab from '@nextcloud/vue/dist/Components/NcAppSidebarTab' +import NcEmptyContent from '@nextcloud/vue/dist/Components/NcEmptyContent' export default { name: 'SidebarTab', components: { - AppSidebarTab, - EmptyContent, + NcAppSidebarTab, + NcEmptyContent, }, props: { |