Skip to content

Commit 5ea52c3

Browse files
committed
Correct value for blacklisted (fixes GH-2201)
1 parent 810f042 commit 5ea52c3

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
@@ -196,7 +196,7 @@ var OrganizationStats = React.createClass({
196196
return [[ts, value - sRejected[ts]]];
197197
}),
198198
blacklisted: $.map(sBlacklisted, (value, ts) => {
199-
return [[ts, value - sBlacklisted[ts]]];
199+
return [[ts, value || null]];
200200
})
201201
},
202202
orgTotal: {

0 commit comments

Comments
 (0)