diff --git a/VERSION b/VERSION index c3a5d5e..f353b75 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.18.16 +6.18.17 diff --git a/play-life-web/package.json b/play-life-web/package.json index 3e9cafa..4ee196c 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "6.18.16", + "version": "6.18.17", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/TaskList.jsx b/play-life-web/src/components/TaskList.jsx index fb88c8c..18744be 100644 --- a/play-life-web/src/components/TaskList.jsx +++ b/play-life-web/src/components/TaskList.jsx @@ -926,8 +926,8 @@ function TaskList({ onNavigate, data, loading, backgroundLoading, error, onRetry {hasSubtasks && ( {task.draft_subtasks_count != null && task.draft_subtasks_count > 0 - ? <>{task.draft_subtasks_count}/{task.subtasks_count} - : `${task.subtasks_count}`} + ? `(${task.draft_subtasks_count}/${task.subtasks_count})` + : `(${task.subtasks_count})`} )}