summaryrefslogtreecommitdiffstats
path: root/src/components/Properties/PropertyText.vue
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-09-27 19:00:17 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-09-27 19:00:40 +0200
commitfde4ba27f4356b220857e17ca9c358c76b81aec1 (patch)
treeda292b9181ce79815fecdd3fd643a916129926a6 /src/components/Properties/PropertyText.vue
parent6d848dcd3bf513076bb2f5cadb138898422d4b30 (diff)
Do not display dupisate types
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/components/Properties/PropertyText.vue')
-rw-r--r--src/components/Properties/PropertyText.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/Properties/PropertyText.vue b/src/components/Properties/PropertyText.vue
index d5488bab..531e8e81 100644
--- a/src/components/Properties/PropertyText.vue
+++ b/src/components/Properties/PropertyText.vue
@@ -29,7 +29,7 @@
<div class="property__row">
<!-- type selector -->
<multiselect v-if="propModel.options" v-model="localType"
- :options="propModel.options" :searchable="false" :placeholder="t('contacts', 'Select type')"
+ :options="options" :searchable="false" :placeholder="t('contacts', 'Select type')"
class="multiselect-vue property__label" track-by="id" label="name"
@input="updateType" />
@@ -76,6 +76,10 @@ export default {
default: '',
required: true
},
+ options: {
+ type: Array,
+ default: () => []
+ },
isFirstProperty: {
type: Boolean,
default: true