6.18.8: Жирный счётчик выполненных подзадач
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m13s

This commit is contained in:
poignatov
2026-03-16 08:54:41 +03:00
parent 10f370b0da
commit 7309deb98f
3 changed files with 3 additions and 3 deletions

View File

@@ -926,7 +926,7 @@ function TaskList({ onNavigate, data, loading, backgroundLoading, error, onRetry
{hasSubtasks && (
<span className="task-subtasks-count">
{task.draft_subtasks_count != null && task.draft_subtasks_count > 0
? `(${task.draft_subtasks_count}/${task.subtasks_count})`
? <>(<b>{task.draft_subtasks_count}</b>/{task.subtasks_count})</>
: `(${task.subtasks_count})`}
</span>
)}