commit | 866763c16a9d39e1d0382c859437e4493f798fbc | [log] [tgz] |
---|---|---|
author | Rucha Mahabal <ruchamahabal2@gmail.com> | Thu Sep 16 00:05:16 2021 +0530 |
committer | GitHub <noreply@github.com> | Thu Sep 16 00:05:16 2021 +0530 |
tree | 9360b030d936f4e445d07861c9d07e9205e47999 | |
parent | e6a1ad8016b5e2aa425661978b99bc09c7ca08d1 [diff] |
fix(minor): Employee filter in Unpaid Expense Claims report (#27530)
diff --git a/erpnext/accounts/report/unpaid_expense_claim/unpaid_expense_claim.js b/erpnext/accounts/report/unpaid_expense_claim/unpaid_expense_claim.js index 811414a..f0ba78c 100644 --- a/erpnext/accounts/report/unpaid_expense_claim/unpaid_expense_claim.js +++ b/erpnext/accounts/report/unpaid_expense_claim/unpaid_expense_claim.js
@@ -4,9 +4,10 @@ frappe.query_reports["Unpaid Expense Claim"] = { "filters": [ { - "fieldname":"employee", + "fieldname": "employee", "label": __("Employee"), - "fieldtype": "Link" + "fieldtype": "Link", + "options": "Employee" } ] }