feat: add comment count to tasks (#1771)

This commit is contained in:
Mithilesh Gupta
2025-11-12 03:30:05 +05:30
committed by GitHub
parent e371ee6f12
commit 01a84dd2d5
13 changed files with 172 additions and 6 deletions

View File

@@ -149,8 +149,8 @@ const {
() => props.viewId,
{position: 'asc'},
() => projectId.value === -1
? null
: 'subtasks',
? 'comment_count'
: ['subtasks', 'comment_count'],
)
const taskPositionService = ref(new TaskPositionService())