feat: draft issues (#2188)

* feat: draft issue

issues can be saved as draft

* style: modal position
This commit is contained in:
Dakshesh Jain 2023-09-14 18:38:31 +05:30 committed by GitHub
parent 759a604cb8
commit eda4da8aed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 1478 additions and 106 deletions

View file

@ -49,7 +49,7 @@ type Props = {
};
secondaryButton?: React.ReactNode;
};
handleIssueAction: (issue: IIssue, action: "copy" | "delete" | "edit") => void;
handleIssueAction: (issue: IIssue, action: "copy" | "delete" | "edit" | "updateDraft") => void;
handleOnDragEnd: (result: DropResult) => Promise<void>;
openIssuesListModal: (() => void) | null;
removeIssue: ((bridgeId: string, issueId: string) => void) | null;