Skip to content
Snippets Groups Projects
Commit c7be2b56 authored by ali asaria's avatar ali asaria
Browse files

fix but on missing output file

parent 341d05f7
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,14 @@ export default function ViewOutputModal({ jobId, setJobId }) { ...@@ -16,6 +16,14 @@ export default function ViewOutputModal({ jobId, setJobId }) {
} }
); );
// The following code prevents a crash if the output file doesn't exist
var dataChecked = '';
if (data?.status) {
dataChecked = '';
} else {
dataChecked = data;
}
return ( return (
<Modal open={jobId != -1} onClose={() => setJobId(-1)}> <Modal open={jobId != -1} onClose={() => setJobId(-1)}>
<ModalDialog> <ModalDialog>
...@@ -37,7 +45,7 @@ export default function ViewOutputModal({ jobId, setJobId }) { ...@@ -37,7 +45,7 @@ export default function ViewOutputModal({ jobId, setJobId }) {
cursorStyle: 'block', cursorStyle: 'block',
wordWrap: 'on', wordWrap: 'on',
}} }}
value={data} value={dataChecked}
/> />
</Typography> </Typography>
<Button <Button
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment