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/workflowengine/src/components/Checks/RequestURL.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/workflowengine/src/components/Checks/RequestURL.vue')
-rw-r--r-- | apps/workflowengine/src/components/Checks/RequestURL.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/workflowengine/src/components/Checks/RequestURL.vue b/apps/workflowengine/src/components/Checks/RequestURL.vue index 85283a2a14f..1a5b5cc7f87 100644 --- a/apps/workflowengine/src/components/Checks/RequestURL.vue +++ b/apps/workflowengine/src/components/Checks/RequestURL.vue @@ -22,7 +22,7 @@ <template> <div> - <Multiselect :value="currentValue" + <NcMultiselect :value="currentValue" :placeholder="t('workflowengine', 'Select a request URL')" label="label" track-by="pattern" @@ -40,7 +40,7 @@ <span class="option__icon" :class="props.option.icon" /> <span class="option__title">{{ props.option.label }} {{ props.option.$groupLabel }}</span> </template> - </Multiselect> + </NcMultiselect> <input v-if="!isPredefined" type="text" :value="currentValue.pattern" @@ -50,13 +50,13 @@ </template> <script> -import Multiselect from '@nextcloud/vue/dist/Components/Multiselect' +import NcMultiselect from '@nextcloud/vue/dist/Components/NcMultiselect' import valueMixin from '../../mixins/valueMixin' export default { name: 'RequestURL', components: { - Multiselect, + NcMultiselect, }, mixins: [ valueMixin, |