[hotfix] undo escape_html for data formatter
This commit is contained in:
parent
9ea3d761d9
commit
0cce9518f9
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ frappe.form.formatters = {
|
|||
}
|
||||
},
|
||||
Data: function(value) {
|
||||
return frappe.utils.escape_html(value==null ? "" : value);
|
||||
return value==null ? "" : value;
|
||||
},
|
||||
Select: function(value) {
|
||||
return __(frappe.form.formatters["Data"](value));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue