[DE] Caption Dialog (removed check for missing characters of label)

This commit is contained in:
Julia Svinareva 2019-09-20 14:08:50 +03:00
parent fc956a7bb7
commit 7b88f2c190

View file

@ -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
});