fix (ui): debit note issued status indicator color (#35401)

* fix: debit note issued status indicator color

* fix: change DebitNoteIssued color from grey to gray
This commit is contained in:
Akshay 2023-05-29 09:42:01 +05:30 committed by GitHub
parent 01567b5ec4
commit 1ab04344db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ frappe.listview_settings["Purchase Invoice"] = {
], ],
get_indicator(doc) { get_indicator(doc) {
if (doc.status == "Debit Note Issued") { if (doc.status == "Debit Note Issued") {
return [__(doc.status), "darkgrey", "status,=," + doc.status]; return [__(doc.status), "gray", "status,=," + doc.status];
} }
if ( if (