From de137052890f349faca0bfabb2dd2d5dcb6b6569 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Manelli?= Date: Mon, 16 Apr 2018 00:25:54 -0300 Subject: Fix lint errors --- client/components/cards/cardDetails.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'client/components') diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index 1b98f2af..cdd027e6 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -347,7 +347,7 @@ Template.copyCardPopup.events({ checklist.cardId = _id; checklist._id = null; const newChecklistId = Checklists.insert(checklist); - ChecklistItems.find({checklistId: checklistId}).forEach(function(item) { + ChecklistItems.find({checklistId}).forEach(function(item) { item._id = null; item.checklistId = newChecklistId; item.cardId = _id; @@ -370,7 +370,7 @@ Template.copyCardPopup.events({ }); Template.copyChecklistToManyCardsPopup.events({ - 'click .js-done' (evt) { + 'click .js-done' () { const card = Cards.findOne(Session.get('currentCard')); const oldId = card._id; card._id = null; @@ -408,7 +408,7 @@ Template.copyChecklistToManyCardsPopup.events({ checklist.cardId = _id; checklist._id = null; const newChecklistId = Checklists.insert(checklist); - ChecklistItems.find({checklistId: checklistId}).forEach(function(item) { + ChecklistItems.find({checklistId}).forEach(function(item) { item._id = null; item.checklistId = newChecklistId; item.cardId = _id; -- cgit v1.2.3-1-g7c22