Skip to content

Commit

Permalink
Correct sort check
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Dec 1, 2012
1 parent 754333b commit 54e13f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/static/sentry/scripts/views.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
if (existing.get('score') != score)
existing.set('score', score);

if (options.sort || true) {
if (options.sort !== false) {
// score changed, resort
this.collection.sort();
}
Expand Down

0 comments on commit 54e13f4

Please sign in to comment.