Fix: Cycle graphs refactor (#5745)
* fix: community changes for cycle graphs * fix: added dependency from root package.json
This commit is contained in:
parent
ee0dce46de
commit
f1a0a8d925
8 changed files with 91 additions and 176 deletions
3
packages/types/src/cycle/cycle.d.ts
vendored
3
packages/types/src/cycle/cycle.d.ts
vendored
|
|
@ -46,11 +46,11 @@ export type TCycleEstimateDistribution = {
|
|||
export type TCycleProgress = {
|
||||
date: string;
|
||||
started: number;
|
||||
actual: number;
|
||||
pending: number;
|
||||
ideal: number | null;
|
||||
scope: number;
|
||||
completed: number;
|
||||
actual: number;
|
||||
unstarted: number;
|
||||
backlog: number;
|
||||
cancelled: number;
|
||||
|
|
@ -103,6 +103,7 @@ export interface ICycle extends TProgressSnapshot {
|
|||
workspace_id: string;
|
||||
project_detail: IProjectDetails;
|
||||
progress: any[];
|
||||
version: number;
|
||||
}
|
||||
|
||||
export interface CycleIssueResponse {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue