diff --git a/erpnext/hr/doctype/attendance/attendance_list.js b/erpnext/hr/doctype/attendance/attendance_list.js index 3a5c5915396..7d69a83e35b 100644 --- a/erpnext/hr/doctype/attendance/attendance_list.js +++ b/erpnext/hr/doctype/attendance/attendance_list.js @@ -13,6 +13,8 @@ frappe.listview_settings['Attendance'] = { onload: function(list_view) { let me = this; const months = moment.months(); + const curMonth = moment().format("MMMM"); + months.splice(months.indexOf(curMonth) + 1); list_view.page.add_inner_button(__("Mark Attendance"), function() { let dialog = new frappe.ui.Dialog({ title: __("Mark Attendance"),