We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e9e96d commit 11ccd21Copy full SHA for 11ccd21
packages/insight/src/components/transaction-details.tsx
@@ -300,7 +300,10 @@ const TransactionDetails: FC<TransactionDetailsProps> = ({
300
</TextElipsis>
301
</DataBox>
302
)}
303
- {isOpReturn(vo) && <ScriptText>{getOpReturnText(vo)}</ScriptText>}
+ {isOpReturn(vo) &&
304
+ <DataBox label="Text">
305
+ <ScriptText>{getOpReturnText(vo)}</ScriptText>
306
+ </DataBox>}
307
{vo.script && (
308
<>
309
<DataBox label='Script Hex'>{new lib.Script(vo.script).toHex()}</DataBox>
0 commit comments