Skip to content

Commit

Permalink
fix: improve error message formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
garethgeorge committed Nov 23, 2023
1 parent a1ed6f9 commit ae33b01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/src/components/OperationList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export const OperationRow = ({
</>
}
avatar={<ExclamationCircleOutlined style={{ color }} />}
description={operation.displayMessage}
description={<pre>{operation.displayMessage}</pre>}
/>
</List.Item>
);
Expand Down

0 comments on commit ae33b01

Please sign in to comment.