fix: issue description was not rendering in the issue create/edit modal (#4122)

This commit is contained in:
guru_sainath 2024-04-04 17:24:16 +05:30 committed by GitHub
parent b4cc58d5dd
commit 3742ea91bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 31 additions and 28 deletions

View File

@ -461,6 +461,7 @@ export const IssueFormRoot: FC<IssueFormProps> = observer((props) => {
/> />
)} )}
</div> </div>
{data?.description_html && watch("description_html") && (
<Controller <Controller
name="description_html" name="description_html"
control={control} control={control}
@ -489,6 +490,7 @@ export const IssueFormRoot: FC<IssueFormProps> = observer((props) => {
/> />
)} )}
/> />
)}
</Fragment> </Fragment>
)} )}
</div> </div>

View File

@ -75,6 +75,7 @@ export const CreateUpdateIssueModal: React.FC<IssuesModalProps> = observer((prop
const { createIssue, updateIssue } = useIssuesActions(storeType); const { createIssue, updateIssue } = useIssuesActions(storeType);
const fetchIssueDetail = async (issueId: string | undefined) => { const fetchIssueDetail = async (issueId: string | undefined) => {
setDescription(undefined);
if (!workspaceSlug) return; if (!workspaceSlug) return;
if (!projectId || issueId === undefined) { if (!projectId || issueId === undefined) {