From cfce388c5a2e477da2430b27f33946787f27409c Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 24 Apr 2019 14:23:32 +0530 Subject: [PATCH] Update frappe/public/js/frappe/views/reports/query_report.js Fixed syntax error Co-Authored-By: scmmishra --- frappe/public/js/frappe/views/reports/query_report.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/views/reports/query_report.js b/frappe/public/js/frappe/views/reports/query_report.js index ef4f62a2c6..a33e6df6a9 100644 --- a/frappe/public/js/frappe/views/reports/query_report.js +++ b/frappe/public/js/frappe/views/reports/query_report.js @@ -548,7 +548,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { function get_options(fields) { return fields.map((field) => { return {label: field.label, value: field.fieldname}; - } + }); } const numeric_fields = columns.filter((col, i) => indices.includes(i));