6.18.3: Фиксированная кнопка Начать/Завершить в тесте
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m15s

This commit is contained in:
poignatov
2026-03-15 19:55:50 +03:00
parent 8749f21ac8
commit a4dcc62a37
5 changed files with 44 additions and 18 deletions

View File

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