mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-08 23:52:57 +00:00
fix(minor): open colour status for issue
This commit is contained in:
@@ -23,8 +23,8 @@ frappe.listview_settings['Issue'] = {
|
|||||||
'Low': 'yellow',
|
'Low': 'yellow',
|
||||||
'Medium': 'orange',
|
'Medium': 'orange',
|
||||||
'High': 'red'
|
'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') {
|
} else if (doc.status === 'Closed') {
|
||||||
return [__(doc.status), "green", "status,=," + doc.status];
|
return [__(doc.status), "green", "status,=," + doc.status];
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user