diff --git a/src/components/tasks/partials/singleTaskInProject.vue b/src/components/tasks/partials/singleTaskInProject.vue index e5b144f92..afa34f2a4 100644 --- a/src/components/tasks/partials/singleTaskInProject.vue +++ b/src/components/tasks/partials/singleTaskInProject.vue @@ -14,17 +14,17 @@ - {{ taskProject.title }} + v-tooltip="$t('task.detail.belongsToProject', {project: project.title})"> + {{ project.title }} - {{ taskProject.title }} + {{ project.title }} projectStore.getProjectById(task.value.projectId)) -const projectColor = computed(() => taskProject.value !== null ? taskProject.value.hexColor : '') +const project = computed(() => projectStore.getProjectById(task.value.projectId)) +const projectColor = computed(() => project.value !== null ? project.value.hexColor : '') const currentProject = computed(() => { return typeof baseStore.currentProject === 'undefined' ? {