summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorhamza mahjoubi <hamzamahjoubi221@gmail.com>2023-12-13 18:31:01 +0100
committerhamza mahjoubi <hamzamahjoubi221@gmail.com>2023-12-13 18:33:53 +0100
commit8ef12665d37a3bfa320e48cab8da75ee21b7f49a (patch)
treeddd9d7e67f36dcda72c889d392836d727d696fb1 /src
parentd9e99605f89f26c7a4bcb56fd7e1ec2df41bf6b0 (diff)
Fix rename types in propreties
Signed-off-by: hamza mahjoubi <hamzamahjoubi221@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/Properties/PropertyMultipleText.vue2
-rw-r--r--src/components/Properties/PropertyText.vue2
-rw-r--r--src/mixins/PropertyMixin.js2
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)