Compare commits

...

1 commit

Author SHA1 Message Date
c4f324f954 Display zero points submits as "submitted" 2020-12-01 18:13:22 +00:00
2 changed files with 2 additions and 2 deletions
frontend/src
server/Ksp.WebServer

View file

@ -107,6 +107,6 @@ export async function grabTaskSummary(): Promise<Map<string, TaskStatus>> {
}
return new Map<string, TaskStatus>(
results.tasks.map(r => [mapId(r.id), { id: mapId(r.id), maxPoints: r.max_points, name: r.name, points: r.points, solved: r.points > r.max_points - 0.001, submitted: r.points > 0 }])
results.tasks.map(r => [mapId(r.id), { id: mapId(r.id), maxPoints: r.max_points, name: r.name, points: r.points ?? 0, solved: r.points > r.max_points - 0.001, submitted: r.points != null }])
)
}

View file

@ -7,6 +7,6 @@
}
},
"KspProxyConfig": {
"Host": "https://ksp.mff.cuni.cz"
"Host": "https://ksp.mff.cuni.cz",
}
}