Skip to content

Commit

Permalink
Fixing typo in property identifier, which caused a bug in user soluti…
Browse files Browse the repository at this point in the history
…ons overview.
  • Loading branch information
krulis-martin committed Jan 2, 2024
1 parent 2de23f1 commit 137ce75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/GroupUserSolutions/GroupUserSolutions.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ const prepareTableData = defaultMemoize(
.map(getJsData)
.filter(onlyBestSolutionsCheckbox ? solution => solution && solution.isBestSolution : identity)
.forEach(s => {
const statusEvaluated = s.lastSubmission && (s.lastSubmission.evalutaion || s.lastSubmission.failure);
const statusEvaluated = s.lastSubmission && (s.lastSubmission.evaluation || s.lastSubmission.failure);
const rte = getRuntime(s.runtimeEnvironmentId);

res.push({
Expand Down

0 comments on commit 137ce75

Please sign in to comment.