Prevent close on backdrop for alt text edit modal (#2492)
* fix: don't close on backdrop for alt text edit * fix: ignore esc key press if a modal is open
This commit is contained in:
@@ -63,7 +63,11 @@ function Modal({modal}: {modal: ModalIface}) {
|
||||
}
|
||||
|
||||
const onPressMask = () => {
|
||||
if (modal.name === 'crop-image' || modal.name === 'edit-image') {
|
||||
if (
|
||||
modal.name === 'crop-image' ||
|
||||
modal.name === 'edit-image' ||
|
||||
modal.name === 'alt-text-image'
|
||||
) {
|
||||
return // dont close on mask presses during crop
|
||||
}
|
||||
closeModal()
|
||||
|
||||
Reference in New Issue
Block a user