forked from AkkomaGang/admin-fe
Fix active users being displayed as deactivated in the user view
This commit is contained in:
parent
9206538f61
commit
330c83797d
1 changed files with 2 additions and 2 deletions
|
@ -51,8 +51,8 @@
|
||||||
<tr class="el-table__row">
|
<tr class="el-table__row">
|
||||||
<td>{{ $t('userProfile.activeUppercase') }}</td>
|
<td>{{ $t('userProfile.activeUppercase') }}</td>
|
||||||
<td>
|
<td>
|
||||||
<el-tag v-if="user.deactivated" type="success">{{ $t('userProfile.active') }}</el-tag>
|
<el-tag v-if="!user.deactivated" type="success">{{ $t('userProfile.active') }}</el-tag>
|
||||||
<el-tag v-if="!user.deactivated" type="danger">{{ $t('userProfile.deactivated') }}</el-tag>
|
<el-tag v-if="user.deactivated" type="danger">{{ $t('userProfile.deactivated') }}</el-tag>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in a new issue