Fix name display bug in profile view
This commit is contained in:
parent
60157abd46
commit
ff3e83b1c5
|
@ -15,7 +15,7 @@
|
||||||
<div v-if="customers.length">
|
<div v-if="customers.length">
|
||||||
|
|
||||||
<div style="display: flex; justify-content: space-between;">
|
<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>
|
</div>
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
@ -75,7 +75,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="!customers.length">
|
<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>
|
</div>
|
||||||
|
|
||||||
</b-tab-item> <!-- Customer -->
|
</b-tab-item> <!-- Customer -->
|
||||||
|
|
Loading…
Reference in a new issue