Skip to content

Commit 0f48079

Browse files
committed
fix block number
1 parent 33cf6a6 commit 0f48079

File tree

1 file changed

+2
-2
lines changed
  • libs/remix-ui/terminal/src/lib/components

1 file changed

+2
-2
lines changed

libs/remix-ui/terminal/src/lib/components/Table.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ const showTable = (opts, showTableHash) => {
7575
<FormattedMessage id="terminal.blockNumber" />
7676
</td>
7777
<td className="remix_ui_terminal_td" data-id={`txLoggerTableContractAddress${opts.hash}`} data-shared={`pair_${opts.hash}`}>
78-
{opts.blockNumber}
79-
<CopyToClipboard content={opts.blockNumber} />
78+
{opts.blockNumber.toString()}
79+
<CopyToClipboard content={opts.blockNumber.toString()} />
8080
</td>
8181
</tr>
8282
) : null}

0 commit comments

Comments
 (0)