summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorsuntala <33031346+suntala@users.noreply.github.com>2018-09-21 18:46:06 +0200
committersuntala <33031346+suntala@users.noreply.github.com>2018-09-21 18:46:06 +0200
commit81b7300d37a330371df569ce8be1225cd5b0a865 (patch)
tree3738d8e3faf1179ed5bd17155ac3ab899b0ec4f1 /src
parent2cc340bce43a4cc8401cc5270edd32b001a57084 (diff)
Fix linting errors.
Diffstat (limited to 'src')
-rw-r--r--src/components/ContactDetails/ContactDetailsProperty.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/ContactDetails/ContactDetailsProperty.vue b/src/components/ContactDetails/ContactDetailsProperty.vue
index 089a5b07..304798a3 100644
--- a/src/components/ContactDetails/ContactDetailsProperty.vue
+++ b/src/components/ContactDetails/ContactDetailsProperty.vue
@@ -22,11 +22,11 @@
<template>
<!-- If not in the rfcProps then we don't want to display it -->
- <component v-if="propModel && propType !== 'unknown'" :is="componentInstance" :select-type.sync="selectType"
- :prop-model="propModel" :value.sync="value" :is-first-property="isFirstProperty"
- :property="property" :is-last-property="isLastProperty" :class="{'property--last': isLastProperty}"
- v-tooltip.right="propModel.info"
- :contact="contact" @delete="deleteProp" />
+ <component v-tooltip.right="propModel.info" v-if="propModel && propType !== 'unknown'"
+ :is="componentInstance" :select-type.sync="selectType" :prop-model="propModel"
+ :value.sync="value" :is-first-property="isFirstProperty" :property="property"
+ :is-last-property="isLastProperty" :class="{'property--last': isLastProperty}" :contact="contact"
+ @delete="deleteProp" />
</template>
<script>