Also fix esc handling media alt modal in media modal
This commit is contained in:
parent
81644e67bb
commit
8426a011b0
|
@ -66,9 +66,17 @@ function MediaModal({
|
||||||
};
|
};
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
useHotkeys('esc', onClose, [onClose]);
|
useHotkeys(
|
||||||
|
'esc',
|
||||||
const [showMediaAlt, setShowMediaAlt] = useState(false);
|
onClose,
|
||||||
|
{
|
||||||
|
ignoreEventWhen: (e) => {
|
||||||
|
const hasModal = !!document.querySelector('#modal-container > *');
|
||||||
|
return hasModal;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[onClose],
|
||||||
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
let handleScroll = () => {
|
let handleScroll = () => {
|
||||||
|
|
Loading…
Reference in a new issue