fix: apply ESLint rule vue/custom-event-name-casing

This commit is contained in:
iamsivin
2024-07-25 23:40:54 +05:30
parent 2ef9274450
commit ecb0b4a4f4
144 changed files with 509 additions and 515 deletions
@@ -40,7 +40,7 @@ export default {
this.$emit('update', { location: value });
},
handleCustomCreate() {
this.$emit('create-attribute');
this.$emit('createAttribute');
},
onCustomAttributeUpdate(key, value) {
this.$emit('update', { custom_attributes: { [key]: value } });
@@ -76,7 +76,7 @@ export default {
<ContactFields
:contact="contact"
@update="updateField"
@create-attribute="toggleCustomAttributeModal"
@createAttribute="toggleCustomAttributeModal"
/>
<EditContact
v-if="showEditModal"