style: Fix key spacing

This commit is contained in:
Faris Ansari 2019-11-06 12:31:07 +05:30 committed by GitHub
parent 1c450877b0
commit 23ed4e4477
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -123,7 +123,7 @@ frappe.ui.form.ControlInput = frappe.ui.form.Control.extend({
value = frappe.utils.escape_html(value);
}
let doc = this.doc || (this.frm && this.frm.doc);
let display_value = frappe.format(value, this.df, {no_icon:true, inline:true}, doc);
let display_value = frappe.format(value, this.df, { no_icon: true, inline: true }, doc);
this.disp_area && $(this.disp_area).html(display_value);
},