fix: issues list modal not closing on escape key (#3463)
This commit is contained in:
parent
eae32593cb
commit
2956c43ed5
1 changed files with 1 additions and 1 deletions
|
|
@ -88,7 +88,7 @@ export const ExistingIssuesListModal: React.FC<Props> = (props) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Transition.Root show={isOpen} as={React.Fragment} afterLeave={() => setSearchTerm("")} appear>
|
<Transition.Root show={isOpen} as={React.Fragment} afterLeave={() => setSearchTerm("")} appear>
|
||||||
<Dialog as="div" className="relative z-20" onClose={() => {}}>
|
<Dialog as="div" className="relative z-20" onClose={handleClose}>
|
||||||
<Transition.Child
|
<Transition.Child
|
||||||
as={React.Fragment}
|
as={React.Fragment}
|
||||||
enter="ease-out duration-300"
|
enter="ease-out duration-300"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue