[WEB-4531]chore: refactor for timeline chart (#7440)

This commit is contained in:
Vamsi Krishna 2025-07-21 19:22:58 +05:30 committed by GitHub
parent cc673a17a0
commit 4c3af7f8a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 43 additions and 23 deletions

View file

@ -190,7 +190,9 @@ export const getIssueBlocksStructure = (block: TIssue): IGanttBlock => ({
sort_order: block?.sort_order,
start_date: block?.start_date ?? undefined,
target_date: block?.target_date ?? undefined,
project_id: block?.project_id ?? undefined,
meta: {
project_id: block?.project_id ?? undefined,
},
});
export const formatTextList = (TextArray: string[]): string => {