Profile: add "---" if no data set
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
10c9127256
commit
659fa77dca
@ -311,7 +311,7 @@
|
||||
duration-200
|
||||
ease-in-out
|
||||
"
|
||||
v-text="state.firstname"
|
||||
v-text="state.firstname || '---'"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-element">
|
||||
@ -333,7 +333,7 @@
|
||||
duration-200
|
||||
ease-in-out
|
||||
"
|
||||
v-text="state.middlename"
|
||||
v-text="state.middlename || '---'"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-element">
|
||||
@ -355,7 +355,7 @@
|
||||
duration-200
|
||||
ease-in-out
|
||||
"
|
||||
v-text="state.lastname"
|
||||
v-text="state.lastname || '---'"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-element">
|
||||
@ -377,7 +377,7 @@
|
||||
duration-200
|
||||
ease-in-out
|
||||
"
|
||||
v-text="state.email"
|
||||
v-text="state.email || '---'"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-element">
|
||||
@ -399,7 +399,7 @@
|
||||
duration-200
|
||||
ease-in-out
|
||||
"
|
||||
v-text="state.phone"
|
||||
v-text="state.phone || '---'"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user