forked from github/plane
fix: sidebar pending issue stats fix (#627)
This commit is contained in:
parent
112fe8e7e6
commit
50275fd2ad
@ -404,7 +404,9 @@ export const CycleDetailsSidebar: React.FC<Props> = ({
|
||||
</span>
|
||||
<span>
|
||||
Pending Issues -{" "}
|
||||
{issues?.length ?? 0 - groupedIssues.completed.length}{" "}
|
||||
{issues &&
|
||||
groupedIssues &&
|
||||
issues?.length - groupedIssues.completed.length}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user