Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: dviejokfs <[email protected]>
  • Loading branch information
dviejokfs committed Oct 3, 2022
1 parent f5fdb19 commit e214a28
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/src/pages/ChannelDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ function TransactionList({ transactions }: TransactionListProps) {
})}
{!!original.pdcWriteHashes?.length ? (
<>
<h3 className="font-medium">PDC Write hashes</h3>
<h3 className="font-medium text-lg">PDC Write hashes</h3>
{original.pdcWriteHashes?.map((write) => {
return (
<li key={write.keyHash}>
Expand Down Expand Up @@ -277,6 +277,7 @@ function TransactionList({ transactions }: TransactionListProps) {
})}
{!!original.pdcReadHashes?.length ? (
<>
<h3 className="font-medium text-lg">PDC Read hashes</h3>
{original.pdcReadHashes?.map((read) => {
return (
<li key={read.keyHash}>
Expand Down

0 comments on commit e214a28

Please sign in to comment.