Commenting out console logging.

This commit is contained in:
Brian McGonagill 2025-07-23 19:44:24 -05:00
parent 4687f27011
commit d25ef56591
31 changed files with 87 additions and 87 deletions

View file

@ -39,7 +39,7 @@ Template.listItemsForm.helpers({
selListId = selListInfo.viewId;
Session.set("listId", selListId);
} else {
console.log("not finding any value for viewId.");
// console.log("not finding any value for viewId.");
}
}
let listInfo = Lists.findOne({ _id: selListId });
@ -100,7 +100,7 @@ Template.listItemsForm.events({
// console.log(findItemVal);
let listItemInfo = Products.find({ prodName: {$regex: findItemVal + '.*', $options: 'i'}}).fetch();
if (!listItemInfo) {
console.log("No data for key input.");
// console.log("No data for key input.");
} else {
getDataList(listItemInfo);
}
@ -128,7 +128,7 @@ const addItem = async(item, listId) => {
let result = await Meteor.callAsync("add.listItem", item, listId);
try {
if (!result) {
console.log(" ISSUE adding list item. See logs.");
// console.log(" ISSUE adding list item. See logs.");
} else {
$("#findListItems").val("");
}