fix: intake issue accept modal (#5465)
This commit is contained in:
parent
dc2e7ca3d5
commit
33ab6029dc
1 changed files with 7 additions and 1 deletions
|
|
@ -179,7 +179,13 @@ export const InboxIssueProperties: FC<TInboxIssueProperties> = observer((props)
|
||||||
<CustomMenu.MenuItem className="!p-1" onClick={() => setParentIssueModalOpen(true)}>
|
<CustomMenu.MenuItem className="!p-1" onClick={() => setParentIssueModalOpen(true)}>
|
||||||
Change parent issue
|
Change parent issue
|
||||||
</CustomMenu.MenuItem>
|
</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
|
Remove parent issue
|
||||||
</CustomMenu.MenuItem>
|
</CustomMenu.MenuItem>
|
||||||
</>
|
</>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue