refactor: Replace darkgray indicator with gray indicator

This commit is contained in:
Suraj Shetty
2020-08-27 18:57:18 +05:30
parent 744169833c
commit b6ebcd7559
32 changed files with 44 additions and 44 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), "darkgray", "status,=," + doc.status];
return [__(doc.status), "gray", "status,=," + doc.status];
}
},
};