From 05cbba9a356dfc051a36813b8a6d806dca8b32bc Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Tue, 11 Oct 2016 21:34:52 +0100 Subject: [PATCH] Exporting current flow not formatting tab node correctly --- editor/js/nodes.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/js/nodes.js b/editor/js/nodes.js index 6f94ea9c0..732c339de 100644 --- a/editor/js/nodes.js +++ b/editor/js/nodes.js @@ -430,6 +430,9 @@ RED.nodes = (function() { * Converts a node to an exportable JSON Object **/ function convertNode(n, exportCreds) { + if (n.type === 'tab') { + return convertWorkspace(n); + } exportCreds = exportCreds || false; var node = {}; node.id = n.id;