From 839ca6dc816228663bbfd8ab48302bc0d910e338 Mon Sep 17 00:00:00 2001 From: hamza mahjoubi Date: Wed, 13 Dec 2023 18:31:01 +0100 Subject: Fix rename types in propreties Signed-off-by: hamza mahjoubi --- src/components/Properties/PropertyMultipleText.vue | 2 +- src/components/Properties/PropertyText.vue | 2 +- src/mixins/PropertyMixin.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Properties/PropertyMultipleText.vue b/src/components/Properties/PropertyMultipleText.vue index 3c17e80d..87a76105 100644 --- a/src/components/Properties/PropertyMultipleText.vue +++ b/src/components/Properties/PropertyMultipleText.vue @@ -57,7 +57,7 @@ tag-placeholder="create" track-by="id" label="name" - @tag="createLabel" + @option:created="createLabel" @input="updateType" /> diff --git a/src/components/Properties/PropertyText.vue b/src/components/Properties/PropertyText.vue index 3951d3ac..a6bdf8f4 100644 --- a/src/components/Properties/PropertyText.vue +++ b/src/components/Properties/PropertyText.vue @@ -49,7 +49,7 @@ :disabled="isReadOnly" track-by="id" label="name" - @tag="createLabel" + @option:created="createLabel" @input="updateType" /> diff --git a/src/mixins/PropertyMixin.js b/src/mixins/PropertyMixin.js index 1b6f6c77..8621c360 100644 --- a/src/mixins/PropertyMixin.js +++ b/src/mixins/PropertyMixin.js @@ -148,7 +148,7 @@ export default { const group = propGroup.split('.')[0] const name = propGroup.split('.')[1] - this.localContact.vCard.addPropertyWithValue(`${group}.x-ablabel`, label) + this.localContact.vCard.addPropertyWithValue(`${group}.x-ablabel`, label.name) // force update the main design sets setPropertyAlias(name, propGroup) -- cgit v1.2.3