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 33f3a9c commit 5826fdaCopy full SHA for 5826fda
src/sentry/static/sentry/app/views/organizationStats/index.jsx
@@ -190,13 +190,13 @@ var OrganizationStats = React.createClass({
190
this.setState({
191
orgStats: {
192
rejected: $.map(sRejected, (value, ts) => {
193
- return [[ts, value || null]];
+ return [[ts, value || 0]];
194
}),
195
accepted: $.map(sReceived, (value, ts) => {
196
return [[ts, value - sRejected[ts] - sBlacklisted[ts]]];
197
198
blacklisted: $.map(sBlacklisted, (value, ts) => {
199
200
})
201
},
202
orgTotal: {
0 commit comments