Added ability to restore a completed lilst from List Management. #27

This commit is contained in:
Brian McGonagill 2025-05-26 16:22:58 -05:00
parent dcd0074b28
commit c9c96d214d
5 changed files with 52 additions and 6 deletions

View file

@ -7,6 +7,7 @@ Template.listMgmtForm.onCreated(function() {
Template.listMgmtForm.onRendered(function() {
Session.set("listNameMiss", false);
Session.set("listNameEditMode", false);
Session.set("showCompletedLists", false);
});
Template.listMgmtForm.helpers({
@ -95,5 +96,8 @@ Template.listMgmtForm.events({
});
}
}
}
},
'change #isCompleted' (event) {
Session.set("showCompletedLists", true);
},
});