fix: invalid filter on email acccount (#25674)

This commit is contained in:
Ankush Menat 2024-03-27 16:39:59 +05:30 committed by GitHub
parent f11313d4c9
commit 59b95a4d19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,7 +16,7 @@ frappe.listview_settings["Email Account"] = {
return [__("Default Sending"), color, "default_outgoing,=,Yes"];
} else {
color = doc.enable_incoming ? "blue" : "gray";
return [__("Inbox"), color, "is_global,=,No|is_default=No"];
return [__("Inbox"), color, "default_outgoing,=,No|default_incoming=No"];
}
},
};