fix: Styling fixes and missing semicolon
This commit is contained in:
parent
327caada32
commit
a9b080ca6a
1 changed files with 3 additions and 3 deletions
|
|
@ -1050,7 +1050,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList {
|
|||
this.columns.splice(insert_after_index + 1, 0, column[0]);
|
||||
|
||||
this.data.forEach(row => {
|
||||
row[column_field] = custom_data[row[link_field]]
|
||||
row[column_field] = custom_data[row[link_field]];
|
||||
})
|
||||
|
||||
this.render_datatable();
|
||||
|
|
@ -1060,7 +1060,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList {
|
|||
let doctypes = [];
|
||||
let dynamic_links = [];
|
||||
let dynamic_doctypes = new Set();
|
||||
this.doctype_field_map = {}
|
||||
this.doctype_field_map = {};
|
||||
|
||||
this.columns.forEach(df => {
|
||||
if (df.fieldtype == "Link" && df.options && df.options != "Currency") {
|
||||
|
|
@ -1090,7 +1090,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList {
|
|||
return {
|
||||
doctype: doc_field_pair[0],
|
||||
fieldname: doc_field_pair[1]
|
||||
}
|
||||
};
|
||||
}));
|
||||
|
||||
doctypes.forEach(doc => {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue