Skip to content

Commit

Permalink
fix token identifier tooltip value
Browse files Browse the repository at this point in the history
  • Loading branch information
radumojic committed Aug 21, 2024
1 parent 9c27f9a commit 8d0d21b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ export const TransactionActionNft = ({
className={`d-flex text-truncate ${
token.svgUrl ? 'side-link' : ''
}`}
{...(token.type === NftTypeEnum.MetaESDT && token?.identifier
{...(token.type === NftTypeEnum.MetaESDT
? { 'aria-label': token.identifier }
: {})}
>
{token.type === NftTypeEnum.MetaESDT && token?.svgUrl ? (
<Overlay title={displayIdentifier} truncate>
<Overlay title={token.identifier} truncate>
<TokenInfo />
</Overlay>
) : (
Expand Down

0 comments on commit 8d0d21b

Please sign in to comment.