fix: apply ESLint rule vue/prefer-true-attribute-shorthand

This commit is contained in:
iamsivin
2024-07-26 12:34:36 +05:30
parent fd6375fc6c
commit 16bc70b6dc
49 changed files with 86 additions and 85 deletions
@@ -59,7 +59,7 @@ export default {
icon="mail"
emoji=""
:value="contact.email"
:show-edit="true"
show-edit
@update="onEmailUpdate"
/>
<Attribute
@@ -67,7 +67,7 @@ export default {
icon="call"
emoji=""
:value="contact.phone_number"
:show-edit="true"
show-edit
@update="onPhoneUpdate"
/>
<Attribute
@@ -76,7 +76,7 @@ export default {
icon="map"
emoji="🌍"
:value="additionalAttributes.location"
:show-edit="true"
show-edit
@update="onLocationUpdate"
/>
<div
@@ -88,7 +88,7 @@ export default {
:label="attribute"
icon="chevron-right"
:value="customAttributes[attribute]"
:show-edit="true"
show-edit
@update="value => onCustomAttributeUpdate(attribute, value)"
/>
</div>
@@ -91,7 +91,7 @@ export default {
:clear-on-select="false"
:show-labels="false"
:placeholder="$t('MERGE_CONTACTS.PARENT.PLACEHOLDER')"
:allow-empty="true"
allow-empty
:loading="isSearching"
:max-height="150"
open-direction="top"