Skip to content

Commit

Permalink
Update identifier styles on transactions page
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyandreevsky committed Sep 26, 2024
1 parent 87d7bae commit ab3d3a8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Link from 'next/link'
import { getTimeDelta } from '../../util/index'
import { Grid, GridItem } from '@chakra-ui/react'
import TypeBadge from './TypeBadge'
import { Identifier } from '../data'
import './TransactionsListItem.scss'

function TransactionsListItem ({ transaction }) {
Expand All @@ -20,7 +21,7 @@ function TransactionsListItem ({ transaction }) {
}
{transaction?.hash &&
<GridItem className={'TransactionsListItem__Column TransactionsListItem__Column--Identifier'}>
<span>{transaction.hash}</span>
<Identifier copyButton={true} styles={['highlight-both']}>{transaction.hash}</Identifier>
</GridItem>
}
{transaction?.type !== undefined &&
Expand Down

0 comments on commit ab3d3a8

Please sign in to comment.