summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-09-07 17:56:38 +0300
committerLauri Ojansivu <x@xet7.org>2019-09-07 17:56:38 +0300
commita56988c487745b2879cebe1943e7a987016e8bef (patch)
treead2b1f288983e0c1b7daf37800ab5965e35d137f /server
parent753d5b953dc52be198d0e6dd967161b81c21d27b (diff)
downloadwekan-a56988c487745b2879cebe1943e7a987016e8bef.tar.gz
wekan-a56988c487745b2879cebe1943e7a987016e8bef.tar.bz2
wekan-a56988c487745b2879cebe1943e7a987016e8bef.zip
Fix: Linked cards make load all cards of database.
Thanks to Akuket ! Closes #2688
Diffstat (limited to 'server')
-rw-r--r--server/publications/boards.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/publications/boards.js b/server/publications/boards.js
index a6ab9983..650e27a0 100644
--- a/server/publications/boards.js
+++ b/server/publications/boards.js
@@ -148,7 +148,7 @@ Meteor.publishRelations('board', function(boardId, isArchived) {
function(cardId, card) {
if (card.type === 'cardType-linkedCard') {
const impCardId = card.linkedId;
- subCards.push(impCardId);
+ //subCards.push(impCardId); // GitHub issue #2688
cardComments.push(impCardId);
attachments.push(impCardId);
checklists.push(impCardId);