make "N/A" faint to avoid confusion that it's actual email value
This commit is contained in:
parent
86132515ce
commit
205dd51ca0
2 changed files with 9 additions and 3 deletions
|
|
@ -371,7 +371,10 @@
|
|||
<dt class="user-profile-field-name">
|
||||
{{ $t('admin_dash.users.labels.email') }}
|
||||
</dt>
|
||||
<dd class="user-profile-field-value">
|
||||
<dd
|
||||
class="user-profile-field-value"
|
||||
:class="{ faint: user.adminData.email == null }"
|
||||
>
|
||||
{{ user.adminData.email == null ? $t('general.not_available') : user.adminData.email }}
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue