Skip to content

Commit 5826fda

Browse files
committed
Default values to 0
1 parent 33f3a9c commit 5826fda

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,13 +190,13 @@ var OrganizationStats = React.createClass({
190190
this.setState({
191191
orgStats: {
192192
rejected: $.map(sRejected, (value, ts) => {
193-
return [[ts, value || null]];
193+
return [[ts, value || 0]];
194194
}),
195195
accepted: $.map(sReceived, (value, ts) => {
196196
return [[ts, value - sRejected[ts] - sBlacklisted[ts]]];
197197
}),
198198
blacklisted: $.map(sBlacklisted, (value, ts) => {
199-
return [[ts, value || null]];
199+
return [[ts, value || 0]];
200200
})
201201
},
202202
orgTotal: {

0 commit comments

Comments
 (0)