|
@@ -25,7 +25,8 @@ App = React.createClass({
|
|
|
tasks: Tasks.find(query, { sort: { createdAt: -1 }}).fetch(),
|
|
|
// Since we already have the data in the client-side Minimongo collection,
|
|
|
// adding this extra count doesn't involve asking the server for anything.
|
|
|
- incompleteCount: Tasks.find(uncheckedQuery).count()
|
|
|
+ incompleteCount: Tasks.find(uncheckedQuery).count(),
|
|
|
+ currentUser: Meteor.user()
|
|
|
};
|
|
|
|
|
|
// Meteor._debug("result", result);
|