fix an issue with marking list items as received

This commit is contained in:
Brian McGonagill 2025-09-12 15:41:55 -05:00
parent 047befcae9
commit 76d3591d51
9 changed files with 118 additions and 47 deletions

View file

@ -25,9 +25,9 @@ Template.deleteConfirmationModal.events({
const delItem = async() => {
let result = await Meteor.callAsync(method, deleteId);
if (!result) {
// console.log(" ERROR deleting item from modal: " + err);
console.log(" ERROR deleting item from modal: " + err);
} else {
// console.log(" SUCCESSFULLY deleted.");
console.log(" SUCCESSFULLY deleted.");
// put the new modal open / close here
// $('#modalDelete').modal('close');
}