Skip to content

Commit

Permalink
Merge pull request KelvinTegelaar#1859 from kris6673/List-Oauth-appid…
Browse files Browse the repository at this point in the history
…-fix-API

Fix OAuth colum giving object id and not application id
  • Loading branch information
KelvinTegelaar committed Nov 13, 2023
2 parents 173a7cf + d9cf840 commit c528e80
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/views/tenant/administration/ListOauthApps.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,17 @@ const columns = [
},
{
name: 'Application ID',
selector: (row) => row['ID'],
selector: (row) => row['ApplicationID'],
sortable: true,
cell: (row) => CellTip(row['ID']),
exportSelector: 'ID',
cell: (row) => CellTip(row['ApplicationID']),
exportSelector: 'ApplicationID',
},
{
name: 'Object ID',
selector: (row) => row['ObjectID'],
sortable: true,
cell: (row) => CellTip(row['ObjectID']),
exportSelector: 'ObjectID',
},
{
name: 'Scope (Permissions)',
Expand Down

0 comments on commit c528e80

Please sign in to comment.