diff --git a/hydra-explorer/web/src/components/MemberCommitDetails/index.tsx b/hydra-explorer/web/src/components/MemberCommitDetails/index.tsx index d559b2b060d..cd55280b67c 100644 --- a/hydra-explorer/web/src/components/MemberCommitDetails/index.tsx +++ b/hydra-explorer/web/src/components/MemberCommitDetails/index.tsx @@ -44,21 +44,25 @@ const MemberCommitDetails: React.FC = ({ member, onClo {member.commits && - Object.entries(member.commits).map(([commitId, commit], index) => ( - - - - {commitId} - - - - - {commit.address} - - - {commit.value.lovelace / 1000000} ₳ - - ))} + Object.entries(member.commits) + .map(([txIn, commit], index) => { + const [txId, txIx] = txIn.split("#") + return ( + + + + {txId} + #{txIx} + + + + {commit.address} + + + {commit.value.lovelace / 1000000} ₳ + + ) + })}