diff options
author | hamza mahjoubi <hamzamahjoubi221@gmail.com> | 2023-12-13 18:31:01 +0100 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2023-12-14 10:52:30 +0000 |
commit | 551a6a73ba63e9b5fb09abd8ec5bdb356386dc5b (patch) | |
tree | 9b17de8f71926866e5ed351dfa1d76f01bda8f39 | |
parent | 0e9101cc0785857e454b0a25f9eb9ae8f065cc93 (diff) |
Fix rename types in propreties
Signed-off-by: hamza mahjoubi <hamzamahjoubi221@gmail.com>
-rw-r--r-- | src/components/Properties/PropertyMultipleText.vue | 2 | ||||
-rw-r--r-- | src/components/Properties/PropertyText.vue | 2 | ||||
-rw-r--r-- | 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 c2f725ba..1f489cfd 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" /> <!-- if we do not support any type on our model but one is set anyway --> diff --git a/src/components/Properties/PropertyText.vue b/src/components/Properties/PropertyText.vue index 73ae88e2..8f7f121b 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" /> <!-- if we do not support any type on our model but one is set anyway --> 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) |