diff --git a/src/stores/projects.ts b/src/stores/projects.ts index e921e9e4d..30a215b83 100644 --- a/src/stores/projects.ts +++ b/src/stores/projects.ts @@ -40,7 +40,7 @@ export const useProjectStore = defineStore('project', () => { .filter(p => !p.isArchived && p.isFavorite)) const hasProjects = computed(() => projectsArray.value.length > 0) - const getChildProjects = computed(() => { + const getChildProjects = computed(() => { return (id: IProject['id']) => projectsArray.value.filter(p => p.parentProjectId === id) })