Skip to content

Commit

Permalink
Pass missing column data to cell renderer
Browse files Browse the repository at this point in the history
ref #4047
  • Loading branch information
Ngkaokis committed Mar 25, 2024
1 parent 260c834 commit f05a1cc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions portal/src/graphql/adminapi/UsersList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,9 @@ const UsersList: React.VFC<UsersListProps> = function UsersList(props) {
case "roles": {
return renderRoleCell(item);
}
default:
return renderDefaultCell(item);
default: {
return renderDefaultCell(item, column);
}
}
},
[
Expand Down

0 comments on commit f05a1cc

Please sign in to comment.