feat: show sub-task count in title when parent is collapsed

When a parent issue is collapsed, its title is suffixed with
"(N sub-tasks)" so the count remains visible at a glance.
The suffix disappears when the parent is expanded.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Darren Davison 2026-04-04 02:46:02 +01:00
parent 11643941e6
commit 12011fa9de
2 changed files with 8 additions and 1 deletions

View file

@ -697,6 +697,11 @@ export function IssuesList({
issue={issue}
issueLinkState={issueLinkState}
className={isChild ? "pl-6 sm:pl-7" : undefined}
titleSuffix={hasChildren && !isExpanded ? (
<span className="ml-1.5 text-xs text-muted-foreground">
({children.length} sub-task{children.length !== 1 ? "s" : ""})
</span>
) : undefined}
mobileLeading={
hasChildren ? (
<button type="button" onClick={toggleCollapse}>