fix: module and cycle sidebar issue progress (#4922)
This commit is contained in:
parent
7da5443808
commit
0ce17ff212
2 changed files with 2 additions and 2 deletions
|
|
@ -258,7 +258,7 @@ export const CycleAnalyticsProgress: FC<TCycleAnalyticsProgress> = observer((pro
|
|||
distribution={chartDistributionData}
|
||||
groupedIssues={groupedIssues}
|
||||
totalIssuesCount={plotType === "points" ? totalEstimatePoints || 0 : totalIssues || 0}
|
||||
isEditable={Boolean(peekCycle)}
|
||||
isEditable={Boolean(!peekCycle)}
|
||||
size="xs"
|
||||
roundedTab={false}
|
||||
noBackground={false}
|
||||
|
|
|
|||
|
|
@ -242,7 +242,7 @@ export const ModuleAnalyticsProgress: FC<TModuleAnalyticsProgress> = observer((p
|
|||
distribution={chartDistributionData}
|
||||
groupedIssues={groupedIssues}
|
||||
totalIssuesCount={plotType === "points" ? totalEstimatePoints || 0 : totalIssues || 0}
|
||||
isEditable={Boolean(peekModule)}
|
||||
isEditable={Boolean(!peekModule)}
|
||||
size="xs"
|
||||
roundedTab={false}
|
||||
noBackground={false}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue