commit | 75c53e5022ec9b513b4dadabe174560ea3614984 | [log] [tgz] |
---|---|---|
author | Jamsheer <jamsheer@earthianslive.com> | Mon May 14 19:17:16 2018 +0530 |
committer | Jamsheer <jamsheer@earthianslive.com> | Mon May 14 19:17:16 2018 +0530 |
tree | 110c3cb9c298d81b2f7b8f52a8dc7cdb36a0c594 | |
parent | 47039e801e27a83984c1bcc851bc526c227235e4 [diff] |
Fix - missing semicolon
diff --git a/erpnext/hr/doctype/additional_salary_component/additional_salary_component.js b/erpnext/hr/doctype/additional_salary_component/additional_salary_component.js index 36bfdf2..13ed239 100644 --- a/erpnext/hr/doctype/additional_salary_component/additional_salary_component.js +++ b/erpnext/hr/doctype/additional_salary_component/additional_salary_component.js
@@ -8,14 +8,14 @@ filters: { type: "earning" } - } + }; }); frm.set_query("employee", function() { return { filters: { company: frm.doc.company } - } + }; }); } });