Skip to content

Commit 3025625

Browse files
authored
Merge pull request #1700 from frappe/version-14-hotfix
chore: release v14
2 parents 3b463e9 + 7bedf5f commit 3025625

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

hrms/hr/doctype/job_applicant/job_applicant.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ frappe.ui.form.on("Job Applicant", {
8080
options: 'Interview Round'
8181
},
8282
],
83-
primary_action_label: 'Create Interview',
83+
primary_action_label: __("Create Interview"),
8484
primary_action(values) {
8585
frm.events.create_interview(frm, values);
8686
d.hide();

hrms/hr/report/employee_leave_balance/employee_leave_balance.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ frappe.query_reports["Employee Leave Balance"] = {
4343
fieldtype: "Select",
4444
options: [
4545
"",
46-
{ "value": "Active", "label": __("Active") },
47-
{ "value": "Inactive", "label": __("Inactive") },
48-
{ "value": "Suspended", "label": __("Suspended") },
49-
{ "value": "Left", "label": __("Left") },
46+
{ value: "Active", label: __("Active") },
47+
{ value: "Inactive", label: __("Inactive") },
48+
{ value: "Suspended", label: __("Suspended") },
49+
{ value: "Left", label: __("Left", null, "Employee") },
5050
],
5151
default: "Active",
5252
},

0 commit comments

Comments
 (0)