diff --git a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js index 8c8d27b3d2..0fd59a47cd 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js @@ -393,7 +393,7 @@ define([ var result = res ? res.asc_getFunctionResult() : undefined; me.lblFunctionResult.html('= ' + ((result!==undefined && result!==null)? result : '')); result = res ? res.asc_getFormulaResult() : undefined; - me.lblFormulaResult.html('' + me.textValue + ': ' + ((result!==undefined && result!==null)? result : '')); + me.lblFormulaResult.html(me.textValue + ':' + ((result!==undefined && result!==null)? result : '')); }, getArgumentsValue: function() {