fix: foreignKey violation bij delete assignment gefixd

This commit is contained in:
Joyelle Ndagijimana 2025-04-23 20:53:00 +02:00
parent 7823c45851
commit 219616f4ee
3 changed files with 14 additions and 10 deletions

View file

@ -75,12 +75,17 @@
const { valid } = await form.value.validate();
if (!valid) return;
let lp = selectedLearningPath.value;
if (!lpIsSelected) {
lp = selectedLearningPath.value?.hruid;
}
const assignmentDTO: AssignmentDTO = {
id: 0,
within: selectedClass.value?.id || "",
title: assignmentTitle.value,
description: description.value,
learningPath: selectedLearningPath.value?.hruid || "",
learningPath: lp || "",
language: language.value,
groups: groups.value,
};
@ -188,14 +193,14 @@
color="secondary"
type="submit"
block
>{{ t("submit") }}</v-btn
>
>{{ t("submit") }}
</v-btn>
<v-btn
to="/user/assignment"
color="grey"
block
>{{ t("cancel") }}</v-btn
>
>{{ t("cancel") }}
</v-btn>
</v-card-text>
</v-container>
</v-form>