From 7b88f2c190f4b1c0c23904c8be957abe9543b65c Mon Sep 17 00:00:00 2001 From: Julia Svinareva Date: Fri, 20 Sep 2019 14:08:50 +0300 Subject: [PATCH] [DE] Caption Dialog (removed check for missing characters of label) --- apps/documenteditor/main/app/view/CaptionDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/CaptionDialog.js b/apps/documenteditor/main/app/view/CaptionDialog.js index bbe613afb..6c4040f75 100644 --- a/apps/documenteditor/main/app/view/CaptionDialog.js +++ b/apps/documenteditor/main/app/view/CaptionDialog.js @@ -225,7 +225,7 @@ define([ }); this.btnAdd.on('click', _.bind(function (e) { var value = this.cmbLabel.getRawValue(); - if (!value || !(/\S/.test(value))) { + if (!value) { Common.UI.error({ msg : this.textLabelError });