mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
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>
|
||||||
<span>
|
<span>
|
||||||
Pending Issues -{" "}
|
Pending Issues -{" "}
|
||||||
{issues?.length ?? 0 - groupedIssues.completed.length}{" "}
|
{issues &&
|
||||||
|
groupedIssues &&
|
||||||
|
issues?.length - groupedIssues.completed.length}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user