Skip to content

Commit

Permalink
fix User Managment table
Browse files Browse the repository at this point in the history
  • Loading branch information
VSirigu-ext committed Jan 30, 2025
1 parent ecccee4 commit c3ecda1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/ui/users/list/UserListTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,12 @@ class UserListTable extends Component {
title: 'user.table.profileType',
field: 'profileType',
render: props => (
<Fragment>
{props.profileType.typeDescription}{' '}
<code>{props.profileType.typeCode}</code>
</Fragment>
props.profileType ?
<Fragment>
{props.profileType.typeDescription}
<code>{props.profileType.typeCode && props.profileType.typeCode}</code>
</Fragment>
: <Fragment />
),
},
{
Expand Down

0 comments on commit c3ecda1

Please sign in to comment.