Skip to content

Commit

Permalink
add uri to token transfers page
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Shorsher <[email protected]>
  • Loading branch information
shorsher committed Nov 17, 2022
1 parent 8162f45 commit f6ce954
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/Lists/TransferList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ export const TransferList: React.FC<Props> = ({
),
button: <FFCopyButton value={transfer.tokenIndex ?? ''} />,
},
{
label: transfer.uri ? t('uri') : '',
value: <FFListText color="primary" text={transfer.uri ?? ''} />,
button: <FFCopyButton value={transfer.uri ?? ''} />,
},
{
label: t('messageID'),
value: transfer.message ? (
Expand Down

0 comments on commit f6ce954

Please sign in to comment.