mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 08:18:50 +00:00
Commenting out console logging.
This commit is contained in:
parent
4687f27011
commit
d25ef56591
31 changed files with 87 additions and 87 deletions
|
|
@ -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("");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue