From f7eccb611f51e8414663cefc98a6aca690fc9083 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Sat, 3 Dec 2022 23:27:22 +0300 Subject: [PATCH] [DE] fix bug 59971 --- apps/common/main/lib/view/ExternalOleEditor.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/common/main/lib/view/ExternalOleEditor.js b/apps/common/main/lib/view/ExternalOleEditor.js index 00260f675..957018e21 100644 --- a/apps/common/main/lib/view/ExternalOleEditor.js +++ b/apps/common/main/lib/view/ExternalOleEditor.js @@ -115,6 +115,7 @@ define([ }, onDlgBtnClick: function(event) { + Common.NotificationCenter.trigger('modal:close', this); if ( this.handler ) { this.handler.call(this, event.currentTarget.attributes['result'].value); return; @@ -123,6 +124,7 @@ define([ }, onToolClose: function() { + Common.NotificationCenter.trigger('modal:close', this); if ( this.handler ) { this.handler.call(this, 'cancel'); return;