fix: Missing semi-colon
diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.js b/erpnext/stock/doctype/stock_entry/stock_entry.js
index cb6cab3..bc1d089 100644
--- a/erpnext/stock/doctype/stock_entry/stock_entry.js
+++ b/erpnext/stock/doctype/stock_entry/stock_entry.js
@@ -9,7 +9,7 @@
 			if (!doc.s_warehouse) {
 				return 'blue';
 			} else {
-				return (doc.qty<=doc.actual_qty) ? 'green' : 'orange'
+				return (doc.qty<=doc.actual_qty) ? 'green' : 'orange';
 			}
 		});