From 8455e7a992b54744beb6de074318c2e93a5338d7 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 25 May 2020 18:50:25 +0300 Subject: [PATCH] [SSE] Function wizard: send function name --- apps/spreadsheeteditor/main/app/view/FormulaWizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js index 33a5e0a69..bb8c346d7 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js @@ -287,7 +287,7 @@ define([ var me = this, index = input.options.index, arg = me.args[index]; - var res = me.api.asc_insertArgumentsInFormula(me.getArgumentsValue(), index, arg.argType), + var res = me.api.asc_insertArgumentsInFormula(me.getArgumentsValue(), index, arg.argType, this.funcprops ? this.funcprops.origin : undefined), argres = res ? res.asc_getArgumentsResult() : undefined; argres = argres ? argres[index] : undefined; arg.lblValue.html('= '+ (argres!==null && argres !==undefined ? argres : '' + arg.argTypeName + '' ));