- restore nullable for position

This commit is contained in:
2023-07-29 00:58:05 +02:00
parent 7fd3be06ea
commit 753421a5a0
3 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ const props = defineProps({
},
});
const categories = ref(props.project.categories ?? []);
const categories = ref(props.project?.categories ?? []);
const categoryToString = computed({
get: () => categories.value.join(', '),