working on tasks for meteor 3 update

This commit is contained in:
Brian McGonagill 2025-06-24 13:16:42 -05:00
parent f12c6bb7c8
commit ca7bcb1a8f
2 changed files with 23 additions and 9 deletions

View file

@ -47,7 +47,7 @@ Template.myTasksForm.events({
}
}
console.log("Date Error: " + taskDateErr + " - Name Error: " + taskNameErr);
// console.log("Date Error: " + taskDateErr + " - Name Error: " + taskNameErr);
if (taskDateErr == false && taskNameErr == false) {
const addTask = async() => {
let result = await Meteor.callAsync("add.task", taskNameArray, "self", "selfId", taskDateArray, actDate);