Skip to content

Commit

Permalink
Merge pull request #206 from kaleido-io/token-uri-transfers-slide
Browse files Browse the repository at this point in the history
add `uri` to token transfers slide
  • Loading branch information
shorsher authored Nov 17, 2022
2 parents 8162f45 + f6ce954 commit c66dc19
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 c66dc19

Please sign in to comment.