fix: replace indicator color darkgrey with darkgray

This commit is contained in:
prssanna
2020-08-27 17:06:10 +05:30
parent 99dfb9556d
commit 744169833c
32 changed files with 49 additions and 49 deletions

View File

@@ -28,7 +28,7 @@ frappe.listview_settings['Issue'] = {
} else if (doc.status === 'Closed') {
return [__(doc.status), "green", "status,=," + doc.status];
} else {
return [__(doc.status), "darkgrey", "status,=," + doc.status];
return [__(doc.status), "darkgray", "status,=," + doc.status];
}
}
}