From d254af9fea74ea06591687de0e7f82eb7f4ff85b Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 11 Jan 2019 15:06:34 +0530 Subject: [PATCH] fix(patch): set_backup_limit.py --- erpnext/projects/doctype/timesheet/timesheet.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/projects/doctype/timesheet/timesheet.js b/erpnext/projects/doctype/timesheet/timesheet.js index 0eabb3921f7..8692440dfa1 100644 --- a/erpnext/projects/doctype/timesheet/timesheet.js +++ b/erpnext/projects/doctype/timesheet/timesheet.js @@ -42,12 +42,12 @@ frappe.ui.form.on("Timesheet", { if(frm.doc.docstatus==1) { if(frm.doc.per_billed < 100 && frm.doc.total_billable_hours && frm.doc.total_billable_hours > frm.doc.total_billed_hours){ frm.add_custom_button(__('Create Sales Invoice'), function() { frm.trigger("make_invoice") }, - "fa fa-file-alt"); + "fa fa-file-text"); } if(!frm.doc.salary_slip && frm.doc.employee){ frm.add_custom_button(__('Create Salary Slip'), function() { frm.trigger("make_salary_slip") }, - "fa fa-file-alt"); + "fa fa-file-text"); } }