Skip to content

Commit

Permalink
small frontend fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bdfhjk committed Mar 31, 2016
1 parent e981cb7 commit 910c829
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/frontend/core/main_view_vm.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function MainViewModel() {
return Enumerable.From(self.crashReportsData())
.Where(
function (crash) {
return crash.crash_group_id == -1;
return !crash.GroupId();
}
)
.ToArray();
Expand Down Expand Up @@ -139,4 +139,4 @@ function MainViewModel() {
self.GroupToView(group);
$('#crash-group-details-modal').modal('show');
}
}
}

0 comments on commit 910c829

Please sign in to comment.