From a4bb9de09ffc2aad3c464049cc6280e92e945449 Mon Sep 17 00:00:00 2001 From: Nikolai Giman Date: Fri, 15 May 2026 10:18:11 +0200 Subject: [PATCH] wip: check permissions for TT component --- web/src/components/features/tasks/TaskDetailPanel.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/components/features/tasks/TaskDetailPanel.vue b/web/src/components/features/tasks/TaskDetailPanel.vue index f5a45d4..2c4a3e5 100644 --- a/web/src/components/features/tasks/TaskDetailPanel.vue +++ b/web/src/components/features/tasks/TaskDetailPanel.vue @@ -114,6 +114,7 @@ @@ -162,6 +163,8 @@ const toast = useToast() const tasksStore = useTasksStore() const { canEditTaskStatus, + canViewTimeTracking, + canLogTime, } = useGoalPermissions() const task = computed(() => tasksStore.selectedTask ?? null) const projectId = computed(() => task.value?.goalId ?? 0)