Commit 2eabaccb by cahrens

The escaping is unnecessary and confusing to the user.

parent e6fcfae9
......@@ -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 () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment