diff --git a/package.json b/package.json index fbfbf830d..60b02b25c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@glific/flow-editor", "license": "AGPL-3.0", "repository": "git://github.com/glific/floweditor.git", - "version": "1.13.9-11", + "version": "1.13.9-12", "description": "'Standalone flow editing tool designed for use within the Glific suite of messaging tools'", "browser": "umd/flow-editor.min.js", "unpkg": "umd/flow-editor.min.js", diff --git a/src/store/helpers.ts b/src/store/helpers.ts index c7273b129..b1d2958a6 100644 --- a/src/store/helpers.ts +++ b/src/store/helpers.ts @@ -93,7 +93,7 @@ export const getActionIndex = (node: FlowNode, actionUUID: string) => { throw new Error('Cannot find action ' + actionUUID); }; -export const getSuggestedResultName = (count: number) => `Result ${count}`; +export const getSuggestedResultName = (count: number) => `result_${count}`; export const hasRouter = (renderNode: RenderNode): boolean => { return !!(renderNode && renderNode.node.router);