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_sharing/src/components/SharingInput.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_sharing/src/components/SharingInput.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingInput.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_sharing/src/components/SharingInput.vue b/apps/files_sharing/src/components/SharingInput.vue index df987942552..905de91bff1 100644 --- a/apps/files_sharing/src/components/SharingInput.vue +++ b/apps/files_sharing/src/components/SharingInput.vue @@ -21,7 +21,7 @@ --> <template> - <Multiselect ref="multiselect" + <NcMultiselect ref="multiselect" class="sharing-input" :clear-on-select="true" :disabled="!canReshare" @@ -45,7 +45,7 @@ <template #noResult> {{ noResultText }} </template> - </Multiselect> + </NcMultiselect> </template> <script> @@ -53,7 +53,7 @@ import { generateOcsUrl } from '@nextcloud/router' import { getCurrentUser } from '@nextcloud/auth' import axios from '@nextcloud/axios' import debounce from 'debounce' -import Multiselect from '@nextcloud/vue/dist/Components/Multiselect' +import NcMultiselect from '@nextcloud/vue/dist/Components/NcMultiselect' import Config from '../services/ConfigService' import GeneratePassword from '../utils/GeneratePassword' @@ -65,7 +65,7 @@ export default { name: 'SharingInput', components: { - Multiselect, + NcMultiselect, }, mixins: [ShareTypes, ShareRequests], |