mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
[WEB-583] fix: issue modal description on workspace level (#3814)
* fix: issue modal description on workspace level * fix: issue modal description on workspace level
This commit is contained in:
parent
34d6b135f2
commit
002b2505f3
@ -98,8 +98,8 @@ export const CreateUpdateIssueModal: React.FC<IssuesModalProps> = observer((prop
|
||||
const { store: currentIssueStore, viewId } = issueStores[storeType];
|
||||
|
||||
const fetchIssueDetail = async (issueId: string | undefined) => {
|
||||
if (!workspaceSlug || !projectId) return;
|
||||
if (issueId === undefined) {
|
||||
if (!workspaceSlug) return;
|
||||
if (!projectId || issueId === undefined) {
|
||||
setDescription("<p></p>");
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user