Skip to content

Commit

Permalink
Fix raw log styling
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 authored and Aniket-Engg committed Jul 17, 2024
1 parent 8065a84 commit a1e7ce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/remix-ui/terminal/src/lib/components/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ const showTable = (opts, showTableHash) => {
<FormattedMessage id="terminal.rawlogs" />
</td>
<td className="remix_ui_terminal_td" data-id={`txLoggerTableHash${opts.hash}`} data-shared={`pair_${opts.hash}`}>
<pre>{JSON.stringify(opts.logs.raw || '0', null, 2)}</pre>
{JSON.stringify(opts.logs.raw || '0', null, 2)}
<CopyToClipboard content={JSON.stringify(opts.logs.raw || '0', null, 2)} />
</td>
</tr>
Expand Down

0 comments on commit a1e7ce7

Please sign in to comment.