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

@@ -6,7 +6,7 @@ frappe.listview_settings['Contract'] = {
} else if (doc.status == "Active") {
return [__(doc.status), "green", "status,=," + doc.status];
} else if (doc.status == "Inactive") {
return [__(doc.status), "darkgrey", "status,=," + doc.status];
return [__(doc.status), "darkgray", "status,=," + doc.status];
}
},
};