Fix: Cycle graphs refactor (#5745)

* fix: community changes for cycle graphs

* fix: added dependency from root package.json
This commit is contained in:
Akshita Goyal 2024-10-03 19:25:53 +05:30 committed by GitHub
parent ee0dce46de
commit f1a0a8d925
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 91 additions and 176 deletions

View file

@ -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 {