[WEB-4117] refactor: work item widgets code split (#7078)

* refactor: work item widget code split

* fix: types
This commit is contained in:
Aaryan Khandelwal 2025-05-19 15:20:40 +05:30 committed by GitHub
parent 2a2feaf88e
commit 2d475491e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 88 additions and 41 deletions

View file

@ -119,7 +119,7 @@ export type TBulkOperationsPayload = {
properties: Partial<TBulkIssueProperties>;
};
export type TIssueDetailWidget = "sub-issues" | "relations" | "links" | "attachments";
export type TWorkItemWidgets = "sub-work-items" | "relations" | "links" | "attachments";
export type TIssueServiceType = EIssueServiceType.ISSUES | EIssueServiceType.EPICS | EIssueServiceType.WORK_ITEMS;