Skip to content

Commit

Permalink
fix: edit and list OCID client
Browse files Browse the repository at this point in the history
  • Loading branch information
mjatin-dev committed May 4, 2022
1 parent 78aeafe commit 07b9705
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function ClientDetailPage({ row, scopes }) {
label="fields.name"
value={row.clientName || row.displayName || '-'}
doc_category={DOC_CATEGORY}
doc_entry="clientName"
doc_entry="displayName"
/>
</Col>
<Col sm={6}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function ClientListPage({ clients, permissions, scopes, loading, dispatch }) {
sorting: true,
searchable: true,
},
{ title: `${t('fields.client_name')}`, field: 'clientName' },
{ title: `${t('fields.client_name')}`, field: 'displayName' },
{
title: `${t('fields.application_type')}`,
field: 'applicationType',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ function ClientWizardForm({
values[ATTRIBUTE].backchannelLogoutUri = values.backchannelLogoutUri
values[ATTRIBUTE].postAuthnScripts = values.postAuthnScripts
values[ATTRIBUTE].additionalAudience = values.additionalAudience
values['displayName'] = values['clientName']
customOnSubmit(JSON.parse(JSON.stringify(values)))
}}
>
Expand Down

0 comments on commit 07b9705

Please sign in to comment.