mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-17 09:17:15 +00:00
fix(minor): open colour status for issue
This commit is contained in:
@@ -23,8 +23,8 @@ frappe.listview_settings['Issue'] = {
|
||||
'Low': 'yellow',
|
||||
'Medium': 'orange',
|
||||
'High': 'red'
|
||||
}
|
||||
return [__(doc.status), color[doc.priority] || 'Red', `status,=,Open`];
|
||||
};
|
||||
return [__(doc.status), color[doc.priority] || 'red', `status,=,Open`];
|
||||
} else if (doc.status === 'Closed') {
|
||||
return [__(doc.status), "green", "status,=," + doc.status];
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user