[WEB-5201] chore: work item and inbox modal refactor (#7990)

* chore: work item and inbbox modal refactor

* chore: code refactor

* chore: code refactor

* chore: code refactor
This commit is contained in:
Anmol Singh Bhatia 2025-10-22 21:11:08 +05:30 committed by GitHub
parent d6657d5168
commit 772b5c5719
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -319,6 +319,7 @@ export const IssueFormRoot: FC<IssueFormProps> = observer((props) => {
{
name: watch("name"),
description_html: getTextContent(watch("description_html")),
issueId: data?.id,
}
);

View file

@ -3,7 +3,7 @@ import { TIssuePriorities } from "./issues";
export type TDuplicateIssuePayload = {
title: string;
workspace_id: string;
issue_id?: string;
issue_id?: string | null;
project_id?: string;
description_stripped?: string;
};