summaryrefslogtreecommitdiffstats
path: root/src/components/Properties/PropertyMultipleText.vue
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-02-04 16:25:58 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-03-13 12:13:54 +0100
commit02de7d76e48ff602a6c97159984cb9f27b5784e2 (patch)
treed22110d792bb3ba19bf69af0ebcb53646113e362 /src/components/Properties/PropertyMultipleText.vue
parent1d41416dec7277d5525386a2e6182262fda7cd91 (diff)
Add ability to clone contact
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/components/Properties/PropertyMultipleText.vue')
-rw-r--r--src/components/Properties/PropertyMultipleText.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/Properties/PropertyMultipleText.vue b/src/components/Properties/PropertyMultipleText.vue
index 896ff661..af7bb430 100644
--- a/src/components/Properties/PropertyMultipleText.vue
+++ b/src/components/Properties/PropertyMultipleText.vue
@@ -30,7 +30,7 @@
<div class="property__row">
<!-- type selector -->
- <multiselect v-if="propModel.options"
+ <Multiselect v-if="propModel.options"
v-model="localType"
:options="options"
:placeholder="t('contacts', 'Select type')"
@@ -101,6 +101,7 @@
</template>
<script>
+import Multiselect from '@nextcloud/vue/dist/Components/Multiselect'
import PropertyMixin from '../../mixins/PropertyMixin'
import PropertyTitle from './PropertyTitle'
import PropertyActions from './PropertyActions'
@@ -109,6 +110,7 @@ export default {
name: 'PropertyMultipleText',
components: {
+ Multiselect,
PropertyTitle,
PropertyActions,
},