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:
parent
2f6c34d18d
commit
5b20ad1ebd
2 changed files with 8 additions and 4 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue