1
0

feat: allow selecting a parent project when creating a project

This commit is contained in:
kolaente
2023-03-29 17:05:09 +02:00
parent 799c0be830
commit ce887c38f3
3 changed files with 15 additions and 1 deletions

View File

@ -12,7 +12,7 @@
>
<template #searchResult="{option}">
<span class="has-text-grey">
{{ projectStore.getParentProjects(option).filter(p => p.id !== option.id).map(p => getProjectTitle(p) ).join(' &gt; ') }} &gt;
{{ projectStore.getParentProjects(option).filter(p => p.id !== option.id).map(p => getProjectTitle(p)).join(' &gt; ') }} &gt;
</span>
{{ getProjectTitle(option) }}
</template>