diff --git a/client/AdminMgmt/ListMgmt/listMgmtTbl.js b/client/AdminMgmt/ListMgmt/listMgmtTbl.js index fb348a8..3681ded 100644 --- a/client/AdminMgmt/ListMgmt/listMgmtTbl.js +++ b/client/AdminMgmt/ListMgmt/listMgmtTbl.js @@ -16,9 +16,9 @@ Template.listMgmtTbl.helpers({ lists: function() { let showComplete = Session.get("showCompletedLists"); if (showComplete) { - return Lists.find({ listComplete: true }); - } else { return Lists.find({}); + } else { + return Lists.find({ listComplete: false }); } } }); @@ -62,7 +62,7 @@ Template.listMgmtTbl.events({ let listId = this._id; Meteor.call('mark.incomplete', listId, function(err, result) { if (err) { - + } else { }