Skip to content

Commit

Permalink
Fix: display return lines in logs view
Browse files Browse the repository at this point in the history
Closes #571
  • Loading branch information
Pauleing committed Jan 15, 2025
1 parent 597556f commit 592ff9a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -431,11 +431,11 @@ export const JobInstanceDetailsDialog: React.FC<{
onClose={() => setLogs(null)}
aria-labelledby="form-dialog-title"
fullWidth
maxWidth={"lg"}
maxWidth={"xl"}
>
<DialogTitle>Logs job {jobInstance.id}</DialogTitle>
<DialogContent>
<Typography sx={{ fontFamily: 'Monospace', fontSize: "small" }}>{logs}</Typography>
<Typography sx={{ fontFamily: 'Monospace', fontSize: "small", whiteSpace: "pre-wrap" }}>{logs}</Typography>
</DialogContent>
</Dialog>
)
Expand Down

0 comments on commit 592ff9a

Please sign in to comment.