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

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