Skip to content

Commit

Permalink
Fix:UI/UX: Users table show red rows for disabled accounts #2876
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Apr 24, 2024
1 parent 2cb53fa commit a0cc42b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/tables/UsersTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<th class="w-32 hidden sm:table-cell">{{ $strings.LabelCreatedAt }}</th>
<th class="w-32"></th>
</tr>
<tr v-for="user in users" :key="user.id" class="cursor-pointer" :class="user.isActive ? '' : 'bg-error bg-opacity-20'" @click="$router.push(`/config/users/${user.id}`)">
<tr v-for="user in users" :key="user.id" class="cursor-pointer" :class="user.isActive ? '' : '!bg-error/10'" @click="$router.push(`/config/users/${user.id}`)">
<td>
<div class="flex items-center">
<widgets-online-indicator :value="!!usersOnline[user.id]" />
Expand Down

0 comments on commit a0cc42b

Please sign in to comment.