Updating dashboard view, and fixing an issue with menu completion.

This commit is contained in:
Brian McGonagill 2022-08-30 16:17:53 -05:00
parent 81f29952e2
commit 2ce2499347
4 changed files with 48 additions and 17 deletions

View file

@ -38,6 +38,13 @@ Template.mainMenuTbl.events({
console.log(" ERROR: can't mark menu complete: " + err);
} else {
console.log(" SUCCESS marking menu complete.");
Meteor.call('setAllMade.menuItem', menuId, function(err, result) {
if (err) {
console.log(" ERROR: cannot set all items as made: " + err);
} else {
console.log(" SUCCESS setting all items made.");
}
});
}
});
}