fix: create issue modal closing on clicking on Grammarly recommendation (#299)
fixed it by not closing modal on outside click
This commit is contained in:
parent
d71cf567e9
commit
11a36b4398
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ export const CreateUpdateIssueModal: React.FC<IssuesModalProps> = ({
|
|||
|
||||
return (
|
||||
<Transition.Root show={isOpen} as={React.Fragment}>
|
||||
<Dialog as="div" className="relative z-20" onClose={handleClose}>
|
||||
<Dialog as="div" className="relative z-20" onClose={() => {}}>
|
||||
<Transition.Child
|
||||
as={React.Fragment}
|
||||
enter="ease-out duration-300"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue