Commit e1889fb8 by Christina Roberts

Merge pull request #11763 from edx/christina/remove-unnecessary-escaping

The escaping is unnecessary and confusing to the user.
parents 40b5f8e6 2eabaccb
...@@ -312,7 +312,7 @@ ...@@ -312,7 +312,7 @@
updateValueInField: function () { updateValueInField: function () {
var value = (_.isUndefined(this.modelValue()) || _.isNull(this.modelValue())) ? '' : this.modelValue(); 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 () { 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