Skip to content

Commit

Permalink
fix: invalid filter on email acccount (#25674) (#25676)
Browse files Browse the repository at this point in the history
(cherry picked from commit 59b95a4)

Co-authored-by: Ankush Menat <ankush@frappe.io>
  • Loading branch information
mergify[bot] and ankush committed Mar 27, 2024
1 parent 14ccbe7 commit c15b47a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frappe/email/doctype/email_account/email_account_list.js
Expand Up @@ -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"];
}
},
};
Expand Down

0 comments on commit c15b47a

Please sign in to comment.