The escaping is unnecessary and confusing to the user.
This commit is contained in:
@@ -312,7 +312,7 @@
|
||||
|
||||
updateValueInField: function () {
|
||||
var value = (_.isUndefined(this.modelValue()) || _.isNull(this.modelValue())) ? '' : this.modelValue();
|
||||
this.$('.u-field-value input').val(_.escape(value));
|
||||
this.$('.u-field-value input').val(value);
|
||||
},
|
||||
|
||||
saveValue: function () {
|
||||
|
||||
Reference in New Issue
Block a user