[DE] Caption Dialog (removed check for missing characters of label)
This commit is contained in:
parent
fc956a7bb7
commit
7b88f2c190
|
@ -225,7 +225,7 @@ define([
|
||||||
});
|
});
|
||||||
this.btnAdd.on('click', _.bind(function (e) {
|
this.btnAdd.on('click', _.bind(function (e) {
|
||||||
var value = this.cmbLabel.getRawValue();
|
var value = this.cmbLabel.getRawValue();
|
||||||
if (!value || !(/\S/.test(value))) {
|
if (!value) {
|
||||||
Common.UI.error({
|
Common.UI.error({
|
||||||
msg : this.textLabelError
|
msg : this.textLabelError
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue