diff options
author | Sheshashailavas Chinthakayala <sc2914@att.com> | 2018-11-12 22:28:37 +0000 |
---|---|---|
committer | Sheshashailavas Chinthakayala <sc2914@att.com> | 2018-11-12 22:29:33 +0000 |
commit | 8797a459b6a5c4516032260cc55663e08a2ab538 (patch) | |
tree | 7b5d9ab9eba158952c87afced4b4bd77a244f5b4 /dgbuilder/public/util | |
parent | 424327075cba872296535ffbfe69f32c228b218a (diff) |
[CCSDK-683] fixed dg import from local git repo
and also added option to view difference of json and xml since import
Change-Id: I4e2616f1880805bd74031020418ba2776616cbfa
Issue-ID: CCSDK-683
Signed-off-by: Sheshashailavas Chinthakayala <sc2914@att.com>
Diffstat (limited to 'dgbuilder/public/util')
-rw-r--r-- | dgbuilder/public/util/js/dgeToXml.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dgbuilder/public/util/js/dgeToXml.js b/dgbuilder/public/util/js/dgeToXml.js index e99d6495..7e5c9721 100644 --- a/dgbuilder/public/util/js/dgeToXml.js +++ b/dgbuilder/public/util/js/dgeToXml.js @@ -773,6 +773,11 @@ var jqxhr = $.post( "/getSharedFlow",{"filePath":filePath}) .done(function(data) { $( "#dgflow-browser-dialog").dialog("close"); var migratedNodes = migrateNodes(data); + var nodeSet = getCurrentFlowNodeSet(); + //console.dir(nodeSet); + if(nodeSet != null && nodeSet.length == 0){ + RED.view.setIsImportAction(true); + } //RED.view.importNodes(data) RED.view.importNodes(JSON.stringify(migratedNodes)); //console.log( "import done"); |