[DE] Fix style name (remove spaces)

This commit is contained in:
Julia Radzhabova 2022-05-20 12:39:04 +03:00
parent ad7418728a
commit fa5908bfa5

View file

@ -85,6 +85,7 @@ define([
style : 'width: 100%;', style : 'width: 100%;',
validateOnBlur: false, validateOnBlur: false,
validation : function(value) { validation : function(value) {
value = value.trim();
var isvalid = value != ''; var isvalid = value != '';
if (isvalid) { if (isvalid) {
@ -121,7 +122,7 @@ define([
getTitle: function () { getTitle: function () {
var me = this; var me = this;
return me.inputTitle.getValue(); return me.inputTitle.getValue().trim();
}, },
getNextStyle: function () { getNextStyle: function () {