We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5826fda commit e7d3f77Copy full SHA for e7d3f77
src/sentry/static/sentry/app/views/organizationStats/index.jsx
@@ -193,7 +193,7 @@ var OrganizationStats = React.createClass({
193
return [[ts, value || 0]];
194
}),
195
accepted: $.map(sReceived, (value, ts) => {
196
- return [[ts, value - sRejected[ts] - sBlacklisted[ts]]];
+ return [[ts, value - (sRejected[ts] || 0) - (sBlacklisted[ts] || 0)]];
197
198
blacklisted: $.map(sBlacklisted, (value, ts) => {
199
0 commit comments