Skip to content

Commit 33f3a9c

Browse files
committed
Correct accepted count
1 parent 4a77bd2 commit 33f3a9c

File tree

1 file changed

+1
-1
lines changed
  • src/sentry/static/sentry/app/views/organizationStats

1 file changed

+1
-1
lines changed

src/sentry/static/sentry/app/views/organizationStats/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ var OrganizationStats = React.createClass({
193193
return [[ts, value || null]];
194194
}),
195195
accepted: $.map(sReceived, (value, ts) => {
196-
return [[ts, value - sRejected[ts]]];
196+
return [[ts, value - sRejected[ts] - sBlacklisted[ts]]];
197197
}),
198198
blacklisted: $.map(sBlacklisted, (value, ts) => {
199199
return [[ts, value || null]];

0 commit comments

Comments
 (0)