From a23304f77cf92d318ff6347d21ec33544b8b74d1 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 4 Dec 2018 14:57:02 +0300 Subject: [PATCH] [SSE] Fix Bug 39910 --- apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js b/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js index 9ee10ea4f..b5ff794eb 100644 --- a/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js +++ b/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js @@ -155,7 +155,7 @@ define([ validateOnChange: true, validateOnBlur: false, validation : function(value) { - var isvalid = me.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.FormatTable, value, true); + var isvalid = me.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.FormatTable, value, false); if (isvalid == Asc.c_oAscError.ID.No) { return true; } else {