1
0

fix(projects): allow arbitrary nesting of new projects

This commit is contained in:
kolaente
2024-04-07 12:00:39 +02:00
parent 2f6b395334
commit f1c3ce5eeb
3 changed files with 0 additions and 10 deletions

View File

@ -96,7 +96,6 @@
{{ $t('project.webhooks.title') }}
</DropdownItem>
<DropdownItem
v-if="level < 2"
:to="{ name: 'project.createFromParent', params: { parentProjectId: project.id } }"
icon="layer-group"
>
@ -135,9 +134,6 @@ const props = defineProps({
type: Object as PropType<IProject>,
required: true,
},
level: {
type: Number,
},
})
const projectStore = useProjectStore()