Fix name display bug in profile view

This commit is contained in:
Lance Edgar 2020-03-17 12:58:36 -05:00
parent 60157abd46
commit ff3e83b1c5

View file

@ -15,7 +15,7 @@
<div v-if="customers.length">
<div style="display: flex; justify-content: space-between;">
<p>{{ person.fullName }} is associated with <strong>{{ customers.length }}</strong> customer account(s)</p>
<p>{{ person.display_name }} is associated with <strong>{{ customers.length }}</strong> customer account(s)</p>
</div>
<br />
@ -75,7 +75,7 @@
</div>
<div v-if="!customers.length">
<p>{{ person.fullName }} has never had a customer account.</p>
<p>{{ person.display_name }} has never had a customer account.</p>
</div>
</b-tab-item> <!-- Customer -->