Skip to content

Commit

Permalink
fix: intake issue accept modal (makeplane#5465)
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolsinghbhatia authored Aug 29, 2024
1 parent dc2e7ca commit 33ab602
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,13 @@ export const InboxIssueProperties: FC<TInboxIssueProperties> = observer((props)
<CustomMenu.MenuItem className="!p-1" onClick={() => setParentIssueModalOpen(true)}>
Change parent issue
</CustomMenu.MenuItem>
<CustomMenu.MenuItem className="!p-1" onClick={() => handleData("parent_id", "")}>
<CustomMenu.MenuItem
className="!p-1"
onClick={() => {
handleData("parent_id", "");
setSelectedParentIssue(undefined);
}}
>
Remove parent issue
</CustomMenu.MenuItem>
</>
Expand Down

0 comments on commit 33ab602

Please sign in to comment.