-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Open
Labels
Description
Currently our mailboxes show the count of unassigned issues inside them:

This is not ideal, because it's not practical to bulk-assign issues to make this count go to zero. Especially for the Resolved and Spam folders: it doesn't make sense to retroactively assign feedbacks.
Instead a better count would be the number of read & unread feedbacks. This way people can see how 'full' is their spam folder, and bulk 'mark as read' what is in there. The Inbox and Resolved mailboxes work intuitively as well.
in
sentry/static/app/components/feedback/list/useMailboxCounts.tsx
Lines 14 to 18 in 830cdcd
| type ApiReturnType = { | |
| 'issue.category:feedback is:unassigned is:ignored': number; | |
| 'issue.category:feedback is:unassigned is:resolved': number; | |
| 'issue.category:feedback is:unassigned is:unresolved': number; | |
| }; |
url: "/issues-count/",
query: {
query: "issue.category:feedback is:unassigned is:unresolved",
statsPeriod: "14d",
}
I want to replace is:unresolved with is:unread
Reactions are currently unavailable