Skip to content

Commit

Permalink
#2474 Fix display in users table
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalizer committed Nov 27, 2023
1 parent cb8374c commit e8864fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dashboard/src/components/users/UsersTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ limitations under the License.
</template>

<template v-slot:cell(userId)="data">
{{ getUserDisplay(data.item) }}
{{ getUserDisplay(data.item, true) }}

<b-button-group class="float-right">
<b-button :to="calculateClientDisplayRoute(data.item)"
variant="outline-info" size="sm" class="text-secondary"
v-b-tooltip.hover="'View User Details'"
:aria-label="`View details for user ${getUserDisplay(data.item)}`"
:aria-label="`View details for user ${getUserDisplay(data.item, true)}`"
data-cy="usersTable_viewDetailsBtn"><i class="fa fa-user-alt" aria-hidden="true"/><span class="sr-only">view user details</span>
</b-button>
</b-button-group>
Expand Down

0 comments on commit e8864fd

Please sign in to comment.