From f0b723cc63c1d554a7cfb751232a6d1296a123c5 Mon Sep 17 00:00:00 2001 From: Joyelle Ndagijimana Date: Sat, 17 May 2025 01:06:12 +0200 Subject: [PATCH] feat: kleine verbetering --- frontend/src/components/assignments/GroupSelector.vue | 2 +- frontend/src/views/assignments/TeacherAssignment.vue | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/assignments/GroupSelector.vue b/frontend/src/components/assignments/GroupSelector.vue index 1014c119..c10645c6 100644 --- a/frontend/src/components/assignments/GroupSelector.vue +++ b/frontend/src/components/assignments/GroupSelector.vue @@ -406,7 +406,7 @@ function removeStudent(groupIndex: number, student: StudentItem): void { {{ t("generate-groups") }} diff --git a/frontend/src/views/assignments/TeacherAssignment.vue b/frontend/src/views/assignments/TeacherAssignment.vue index 640068f2..34ac1948 100644 --- a/frontend/src/views/assignments/TeacherAssignment.vue +++ b/frontend/src/views/assignments/TeacherAssignment.vue @@ -144,6 +144,7 @@ async function saveChanges(): Promise { } async function handleGroupsUpdated(updatedGroups: string[][]): Promise { + console.log(updatedGroups); const assignmentDTO: AssignmentDTO = { groups: updatedGroups, };