Fix - missing semicolon

This commit is contained in:
Jamsheer
2018-05-14 19:17:16 +05:30
parent 47039e801e
commit 75c53e5022

View File

@@ -8,14 +8,14 @@ frappe.ui.form.on('Additional Salary Component', {
filters: { filters: {
type: "earning" type: "earning"
} }
} };
}); });
frm.set_query("employee", function() { frm.set_query("employee", function() {
return { return {
filters: { filters: {
company: frm.doc.company company: frm.doc.company
} }
} };
}); });
} }
}); });