Skip to content

Commit

Permalink
Add alias field to identity page
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyandreevsky committed Oct 14, 2024
1 parent 14f479b commit 2af6817
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/frontend/src/app/identity/[identifier]/Identity.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,16 @@ function Identity ({ identifier }) {
</LoadingLine>
</Td>
</Tr>
{identity?.alias &&
<Tr>
<Td w={tdTitleWidth}>Name</Td>
<Td isNumeric className={'Table__Cell--BreakWord'}>
<LoadingLine loading={identity.loading}>
{identity.alias}
</LoadingLine>
</Td>
</Tr>
}
<Tr>
<Td w={tdTitleWidth}>Balance</Td>
<Td isNumeric>
Expand Down

0 comments on commit 2af6817

Please sign in to comment.