Skip to content

Commit 137ce75

Browse files
committed
Fixing typo in property identifier, which caused a bug in user solutions overview.
1 parent 2de23f1 commit 137ce75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/GroupUserSolutions/GroupUserSolutions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ const prepareTableData = defaultMemoize(
232232
.map(getJsData)
233233
.filter(onlyBestSolutionsCheckbox ? solution => solution && solution.isBestSolution : identity)
234234
.forEach(s => {
235-
const statusEvaluated = s.lastSubmission && (s.lastSubmission.evalutaion || s.lastSubmission.failure);
235+
const statusEvaluated = s.lastSubmission && (s.lastSubmission.evaluation || s.lastSubmission.failure);
236236
const rte = getRuntime(s.runtimeEnvironmentId);
237237

238238
res.push({

0 commit comments

Comments
 (0)