fixed frontend for new module api endpoint and fixed distinct database request

This commit is contained in:
masterelmar
2023-10-08 21:32:50 +02:00
parent 60eb4e34f6
commit ba2bbf8de9
5 changed files with 10 additions and 8 deletions

View File

@@ -30,7 +30,7 @@ async function nextStep() {
await router.push("/rename-modules");
}
const display = (module: Module) => module.Name + " (" + module.Course + ")";
const display = (module: Module) => module.name + " (" + module.course + ")";
const selectAll = ref(false);