Skip to content

Commit

Permalink
FIX build status on submission page
Browse files Browse the repository at this point in the history
  • Loading branch information
wabscale committed Feb 6, 2022
1 parent 71947a7 commit 014205a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/pages/core/public/Submission/Submission.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default function Submission() {
passed: !!submission?.build?.passed,
message: !!submission?.build?.passed ? 'Build Succeeded' : 'Build Failed',
output_type: 'text',
output: submission?.build?.stdout ?? '',
output: submission?.build?.stdout ?? null,
},
};

Expand Down

0 comments on commit 014205a

Please sign in to comment.