[minor] allow any time logs to be batched, fixes #5386
diff --git a/erpnext/projects/doctype/time_log/time_log_list.js b/erpnext/projects/doctype/time_log/time_log_list.js
index e9e7d05..4428bf6 100644
--- a/erpnext/projects/doctype/time_log/time_log_list.js
+++ b/erpnext/projects/doctype/time_log/time_log_list.js
@@ -34,10 +34,6 @@
 			// select only billable time logs
 			for(var i in selected) {
 				var d = selected[i];
-				if(!d.billable) {
-					msgprint(__("Time Log is not billable") + ": " + d.name + " - " + d.title);
-					return;
-				}
 				if(d.status=="Batched for Billing") {
 					msgprint(__("Time Log has been Batched for Billing") + ": " + d.name + " - " + d.title);
 					return;