This commit is contained in:
Lorenz Padberg 2023-08-21 15:20:20 +02:00
parent 807c038a34
commit 8444a48c26
2 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@
</div>
<div>
<pill :text="module.level?.name"></pill>
<pill :text="module.category?.name"></pill>
<pill :text="module.categoryType?.name"></pill>
</div>
</div>

View File

@ -96,7 +96,7 @@
`);
const categoryOptions = computed(() => {
return [nullCategory, ...moduleCategoryResult.value?.moduleCategoryTypes || []];
return [nullCategory, ...moduleCategoryResult.value?.moduleCategories || []];
});