Skip to content

Commit

Permalink
Make trace easier to read
Browse files Browse the repository at this point in the history
Use `<pre>` instead of `<div>`
  • Loading branch information
suzaku committed Mar 18, 2024
1 parent 53a6553 commit 8cf6d3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Table, { TagCell } from 'components/common/NewTable';
import ActionsCellTasks from './ActionsCellTasks';

const ExpandedTaskRow: React.FC<{ row: Row<Task> }> = ({ row }) => {
return <div>{row.original.status.trace}</div>;
return <pre>{row.original.status.trace}</pre>;
};

const MAX_LENGTH = 100;
Expand Down

0 comments on commit 8cf6d3c

Please sign in to comment.