fix: Missing semi-colon

This commit is contained in:
marination 2021-01-28 12:04:14 +05:30
parent bc370b3ee5
commit 27bac2aaec

View File

@ -9,7 +9,7 @@ frappe.ui.form.on('Stock Entry', {
if (!doc.s_warehouse) {
return 'blue';
} else {
return (doc.qty<=doc.actual_qty) ? 'green' : 'orange'
return (doc.qty<=doc.actual_qty) ? 'green' : 'orange';
}
});