1
0

chore: export not archived root projects

This commit is contained in:
kolaente
2023-04-01 11:15:12 +02:00
parent 0be83db40f
commit b5d9afd0f7
2 changed files with 5 additions and 3 deletions

View File

@ -19,8 +19,7 @@ await projectStore.loadProjects()
const projects = computed({
get() {
return projectStore.projectsArray
.filter(p => p.parentProjectId === 0 && !p.isArchived)
return projectStore.notArchivedRootProjects
.sort((a, b) => a.position - b.position)
},
set() { }, // Vue will complain about the component not being writable - but we never need to write here. The setter is only here to silence the warning.