fixup! fix(frontend): Submission status per groep

This commit is contained in:
Tibo De Peuter 2025-05-20 18:51:06 +02:00
parent 0e8b1d803f
commit cd2f8583f9
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2

View file

@ -33,7 +33,7 @@
() => getLearningPathQuery.data.value,
(learningPath) => {
if (learningPath) {
hasMadeProgress.value = learningPath.amountOfNodes === learningPath.amountOfNodesLeft;
hasMadeProgress.value = learningPath.amountOfNodes !== learningPath.amountOfNodesLeft;
emit("update:hasSubmission", hasMadeProgress.value);
}
},