diff --git a/src/components/tasks/partials/singleTaskInProject.vue b/src/components/tasks/partials/singleTaskInProject.vue index 942619fd2..980b97175 100644 --- a/src/components/tasks/partials/singleTaskInProject.vue +++ b/src/components/tasks/partials/singleTaskInProject.vue @@ -12,7 +12,7 @@ /> @@ -107,8 +107,14 @@ {{ task.percentDone * 100 }}% + + () @@ -232,6 +235,8 @@ const taskStore = useTaskStore() const project = computed(() => projectStore.projects[task.value.projectId]) const projectColor = computed(() => project.value ? project.value?.hexColor : '') +const showProjectSeparately = computed(() => !showProject && currentProject.value?.id !== task.value.projectId && project.value) + const currentProject = computed(() => { return typeof baseStore.currentProject === 'undefined' ? { id: 0,