1
0

fix: make tests work again

This commit is contained in:
kolaente
2023-03-27 14:25:31 +02:00
parent 2e336150e0
commit 5685890493
12 changed files with 20 additions and 207 deletions

View File

@ -76,7 +76,7 @@ onBeforeMount(async () => {
})
const projects = computed(() => Object.values(projectStore.projects)
.filter(p => p.parentProjectId === 0)
.filter(p => p.parentProjectId === 0 && !p.isArchived)
.sort((a, b) => a.position < b.position ? -1 : 1))
</script>