fix(minor): open colour status for issue

This commit is contained in:
Rushabh Mehta 2019-07-12 12:55:28 +05:30
parent f7c151e7ba
commit 64897d26a4

View File

@ -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 {