mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 23:59:40 +01:00
fix: issues list modal not closing on escape key (#3463)
This commit is contained in:
committed by
GitHub
parent
eae32593cb
commit
2956c43ed5
@@ -88,7 +88,7 @@ export const ExistingIssuesListModal: React.FC<Props> = (props) => {
|
||||
return (
|
||||
<>
|
||||
<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
|
||||
as={React.Fragment}
|
||||
enter="ease-out duration-300"
|
||||
|
||||
Reference in New Issue
Block a user