From 4082865ac1119057e517f0802bf9349ac3e28c12 Mon Sep 17 00:00:00 2001 From: agriyadev5 Date: Wed, 2 Jun 2021 13:21:32 +0530 Subject: [PATCH] #554 Clicking on OK in the Export Image Dialog launch the action but the dialog does not close --- src/editor/dialogs/exportDialog.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/editor/dialogs/exportDialog.js b/src/editor/dialogs/exportDialog.js index 8717b127..04a08ea4 100644 --- a/src/editor/dialogs/exportDialog.js +++ b/src/editor/dialogs/exportDialog.js @@ -188,6 +188,7 @@ export class SeExportDialog extends HTMLElement { quality: this.value } }); this.dispatchEvent(triggerEvent); + document.getElementById('se-export-dialog').setAttribute('dialog', 'close'); } }; const onChangeHandler = (e) => {