|
@@ -134,12 +134,7 @@ const questions = computed(() => {
|
|
|
return qs;
|
|
|
});
|
|
|
|
|
|
-const markerScore = computed(
|
|
|
- () =>
|
|
|
- (questions.value
|
|
|
- ?.map((q) => Math.round((q.score || 0) * 100))
|
|
|
- .reduce((acc, s) => acc + s) || 0) / 100
|
|
|
-);
|
|
|
+const markerScore = computed(() => store.currentTask?.markerScore || 0);
|
|
|
|
|
|
function addToCheckedQuestion(question: Question) {
|
|
|
checkedQuestions.push(question);
|