Skip to content

Commit 4194762

Browse files
committed
fix(admin-ui): client edit page fix
1 parent 09ba09b commit 4194762

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

admin-ui/plugins/auth-server/components/Clients/ClientListPage.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function ClientListPage({ clients, permissions, scopes, loading, dispatch }) {
8484
title: `${t('fields.grant_types')}`,
8585
field: 'grantTypes',
8686
render: (rowData) => {
87-
return rowData.grantTypes.map((data) => {
87+
return rowData?.grantTypes?.map((data) => {
8888
return (
8989
<div style={{ maxWidth: 120, overflow: 'auto' }}>
9090
<Badge color="primary">{data}</Badge>

0 commit comments

Comments
 (0)