[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%;',
validateOnBlur: false,
validation : function(value) {
value = value.trim();
var isvalid = value != '';
if (isvalid) {
@ -121,7 +122,7 @@ define([
getTitle: function () {
var me = this;
return me.inputTitle.getValue();
return me.inputTitle.getValue().trim();
},
getNextStyle: function () {