Skip to content

Commit

Permalink
fix(admin-ui): client edit page fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mjatin-dev committed May 11, 2022
1 parent 09ba09b commit 4194762
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function ClientListPage({ clients, permissions, scopes, loading, dispatch }) {
title: `${t('fields.grant_types')}`,
field: 'grantTypes',
render: (rowData) => {
return rowData.grantTypes.map((data) => {
return rowData?.grantTypes?.map((data) => {
return (
<div style={{ maxWidth: 120, overflow: 'auto' }}>
<Badge color="primary">{data}</Badge>
Expand Down

0 comments on commit 4194762

Please sign in to comment.