diff --git a/src/renderer/routes/test_sequencer_panel/components/data-table/utils.tsx b/src/renderer/routes/test_sequencer_panel/components/data-table/utils.tsx index 156c6a6b0..cfeedb3ad 100644 --- a/src/renderer/routes/test_sequencer_panel/components/data-table/utils.tsx +++ b/src/renderer/routes/test_sequencer_panel/components/data-table/utils.tsx @@ -52,7 +52,7 @@ export const mapStatusToDisplay: { [k in StatusType] } = { FAIL - +

Error Message:

{renderErrorMessage(status)}
@@ -63,7 +63,7 @@ export const mapStatusToDisplay: { [k in StatusType] } = { function renderErrorMessage(text: string): JSX.Element { const lines = text.split("\n"); return ( -
+
{lines.map((line, index) => (
{line}
))}