From dc5566de28e2eeee2f8ba47a7250a458c0554421 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 3 Aug 2018 14:06:29 +0300 Subject: [PATCH] [SSE] Fix filter tooltip --- apps/spreadsheeteditor/main/app/controller/DocumentHolder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 1d6ce8f84..dfdd381a0 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -1206,7 +1206,7 @@ define([ str = this.getFilterName(Asc.c_oAscAutoFilterTypes.CustomFilters, customFilters[0].asc_getOperator()) + " \"" + customFilters[0].asc_getVal() + "\""; if (customFilters.length>1) { - str += (customFilter.asc_getAnd() ? this.txtAnd : this.txtOr); + str = str + " " + (customFilter.asc_getAnd() ? this.txtAnd : this.txtOr); str = str + " " + this.getFilterName(Asc.c_oAscAutoFilterTypes.CustomFilters, customFilters[1].asc_getOperator()) + " \"" + customFilters[1].asc_getVal() + "\""; } } else if (filterType === Asc.c_oAscAutoFilterTypes.ColorFilter) {