Skip to content

Commit

Permalink
Fix Error Display
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskerr committed Feb 26, 2024
1 parent 5a553cb commit 3be329a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/zui/src/css/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ code {
}

pre {
overflow-x: scroll;
overflow-x: auto;
}

code {
Expand Down
2 changes: 1 addition & 1 deletion apps/zui/src/views/results-pane/errors/default-error.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function DefaultError(props: {error: unknown}) {
return (
<BG>
<h2>Error</h2>
<p>{props.error.toString()}</p>
<pre>{props.error.toString()}</pre>
</BG>
)
}

0 comments on commit 3be329a

Please sign in to comment.