diff --git a/src/components/spaces/SpaceCreationDialog.vue b/src/components/spaces/SpaceCreationDialog.vue index cc119db..c26c59d 100644 --- a/src/components/spaces/SpaceCreationDialog.vue +++ b/src/components/spaces/SpaceCreationDialog.vue @@ -20,6 +20,7 @@ const props = defineProps({ const spaceName = ref('') const spaceDescription = ref('') +const createCategories = ref(true) const cancel = () => { resetForm() @@ -30,6 +31,7 @@ const createSpace = async () => { const space = new Space() space.name = spaceName.value space.description = spaceDescription.value + space.createCategories = createCategories.value try { await createSpaceRequest(space) resetForm() @@ -59,6 +61,10 @@ const resetForm = () => {