diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/components/cards/cardDetails.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index 9e08e248..1ea23a69 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -333,7 +333,7 @@ Template.copyManyCardPopup.events({ checklist.cardId = _id; checklist._id = null; Checklists.insert(checklist); - }); + }); // copy card comments cursor = CardComments.find({cardId: oldId}); @@ -343,7 +343,7 @@ Template.copyManyCardPopup.events({ comment.cardId = _id; comment._id = null; CardComments.insert(comment); - }); + }); } Popup.close(); } |