From df041332a4dbf635b409b01402fabfa67f73a8f4 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 18 Nov 2022 17:22:29 +0300 Subject: [PATCH] Add id for external sse editors --- apps/common/main/lib/view/ExternalDiagramEditor.js | 1 + apps/common/main/lib/view/ExternalMergeEditor.js | 1 + apps/common/main/lib/view/ExternalOleEditor.js | 1 + 3 files changed, 3 insertions(+) diff --git a/apps/common/main/lib/view/ExternalDiagramEditor.js b/apps/common/main/lib/view/ExternalDiagramEditor.js index e977ec4d09..7fcc786707 100644 --- a/apps/common/main/lib/view/ExternalDiagramEditor.js +++ b/apps/common/main/lib/view/ExternalDiagramEditor.js @@ -46,6 +46,7 @@ define([ initialize : function(options) { var _options = {}; _.extend(_options, { + id: 'id-external-diagram-editor', title: this.textTitle, storageName: 'diagram-editor', sdkplaceholder: 'id-diagram-editor-placeholder', diff --git a/apps/common/main/lib/view/ExternalMergeEditor.js b/apps/common/main/lib/view/ExternalMergeEditor.js index 0b91a6e3ad..f8f696f10a 100644 --- a/apps/common/main/lib/view/ExternalMergeEditor.js +++ b/apps/common/main/lib/view/ExternalMergeEditor.js @@ -46,6 +46,7 @@ define([ initialize : function(options) { var _options = {}; _.extend(_options, { + id: 'id-external-merge-editor', title: this.textTitle, storageName: 'merge-editor', sdkplaceholder: 'id-merge-editor-placeholder', diff --git a/apps/common/main/lib/view/ExternalOleEditor.js b/apps/common/main/lib/view/ExternalOleEditor.js index 415705b13b..f3338b4920 100644 --- a/apps/common/main/lib/view/ExternalOleEditor.js +++ b/apps/common/main/lib/view/ExternalOleEditor.js @@ -46,6 +46,7 @@ define([ initialize : function(options) { var _options = {}; _.extend(_options, { + id: 'id-external-ole-editor', title: this.textTitle, storageName: 'ole-editor', sdkplaceholder: 'id-ole-editor-placeholder',