Skip to content

Commit

Permalink
make eventlog sorted with newest at the top
Browse files Browse the repository at this point in the history
  • Loading branch information
angelcabo committed Jul 28, 2015
1 parent a341351 commit e76bb0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meteor-app/client/components/eventlog/helpers.js
Expand Up @@ -21,7 +21,7 @@ var FriendlyEventDescription = {

Template.eventlog.helpers({
events: function () {
return CanvasEvents.find({});
return CanvasEvents.find({}, {sort: {timestamp: -1}});
}
});

Expand Down

0 comments on commit e76bb0c

Please sign in to comment.