Skip to content

Commit

Permalink
fix(admin-ui): show id for scopes 357
Browse files Browse the repository at this point in the history
  • Loading branch information
mjatin-dev committed Aug 18, 2022
1 parent cadd7a3 commit 7f35a6b
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ function ClientShowSpontaneousScopes({ handler, isOpen }) {
scopesByCreator?.map((scope, key) => {
return (
<div key={key}>
<Badge color={`primary-${selectedTheme}`}>
{scope?.attributes?.spontaneousClientScopes[0]}
</Badge>
<Badge color={`primary-${selectedTheme}`}>{scope?.id}</Badge>
</div>
)
})
Expand Down

0 comments on commit 7f35a6b

Please sign in to comment.