summaryrefslogtreecommitdiffstats
path: root/src/components/Properties/PropertyGroups.vue
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-09 15:22:55 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-09 15:22:55 +0100
commit07b5e76c479b8cf5f3668cc69ba87e9b3b844e4f (patch)
tree32e40908461abf8d08eb5a836fc1601f1557a55f /src/components/Properties/PropertyGroups.vue
parentf0883bb5d292d798432bb9b5698efeacebf10d20 (diff)
Migrate to global components and use nextcloud multiselect
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/components/Properties/PropertyGroups.vue')
-rw-r--r--src/components/Properties/PropertyGroups.vue7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/components/Properties/PropertyGroups.vue b/src/components/Properties/PropertyGroups.vue
index 7675bbf1..b4de6185 100644
--- a/src/components/Properties/PropertyGroups.vue
+++ b/src/components/Properties/PropertyGroups.vue
@@ -29,7 +29,7 @@
<!-- multiselect taggable groups with a limit to 3 groups shown -->
<multiselect v-model="localValue" :options="groups" :placeholder="t('contacts', 'Add contact in group')"
:limit="3" :multiple="true" :taggable="true"
- :close-on-select="false" tag-placeholder="create" class="multiselect-vue property__value"
+ :close-on-select="false" tag-placeholder="create" class="property__value"
@input="updateValue" @tag="validateGroup" @select="addContactToGroup"
@remove="removeContactToGroup">
@@ -42,17 +42,12 @@
</template>
<script>
-import Multiselect from 'vue-multiselect'
import debounce from 'debounce'
import Contact from '../../models/contact'
export default {
name: 'PropertyGroups',
- components: {
- Multiselect
- },
-
props: {
propModel: {
type: Object,