6.18.9: Убраны скобки у счётчика подзадач
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m16s

This commit is contained in:
poignatov
2026-03-16 13:22:40 +03:00
parent 7309deb98f
commit 85e9a6f48b
3 changed files with 4 additions and 4 deletions

View File

@@ -1 +1 @@
6.18.8
6.18.9

View File

@@ -1,6 +1,6 @@
{
"name": "play-life-web",
"version": "6.18.8",
"version": "6.18.9",
"type": "module",
"scripts": {
"dev": "vite",

View File

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