Skip to content
Snippets Groups Projects
Commit 330c8379 authored by Eugenij's avatar Eugenij
Browse files

Fix active users being displayed as deactivated in the user view

parent 9206538f
Branches
Tags
1 merge request!79Fix active users being displayed as deactivated in the user view
......@@ -51,8 +51,8 @@
<tr class="el-table__row">
<td>{{ $t('userProfile.activeUppercase') }}</td>
<td>
<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="success">{{ $t('userProfile.active') }}</el-tag>
<el-tag v-if="user.deactivated" type="danger">{{ $t('userProfile.deactivated') }}</el-tag>
</td>
</tr>
</tbody>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment