summaryrefslogtreecommitdiffstats
path: root/client/components/cards/attachments.js
diff options
context:
space:
mode:
authorAndrés Manelli <andresmanelli@gmail.com>2018-05-02 15:03:22 -0300
committerAndrés Manelli <andresmanelli@gmail.com>2018-08-11 00:17:42 +0200
commitf76d8e47a859c64a99cfd460e3fd496965bf021a (patch)
tree2adc26b9ba11e906e8bffb8b097be005977b1ae3 /client/components/cards/attachments.js
parent6adfcb35138259c5969e63d20a68cd6f9e8c393c (diff)
downloadwekan-f76d8e47a859c64a99cfd460e3fd496965bf021a.tar.gz
wekan-f76d8e47a859c64a99cfd460e3fd496965bf021a.tar.bz2
wekan-f76d8e47a859c64a99cfd460e3fd496965bf021a.zip
Refactor imported -> linked in components
Diffstat (limited to 'client/components/cards/attachments.js')
-rw-r--r--client/components/cards/attachments.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/components/cards/attachments.js b/client/components/cards/attachments.js
index 1a4d5bb6..5cac930d 100644
--- a/client/components/cards/attachments.js
+++ b/client/components/cards/attachments.js
@@ -57,9 +57,9 @@ Template.cardAttachmentsPopup.events({
const card = this;
FS.Utility.eachFile(evt, (f) => {
const file = new FS.File(f);
- if (card.isImportedCard()) {
- file.boardId = Cards.findOne(card.importedId).boardId;
- file.cardId = card.importedId;
+ if (card.isLinkedCard()) {
+ file.boardId = Cards.findOne(card.linkedId).boardId;
+ file.cardId = card.linkedId;
} else {
file.boardId = card.boardId;
file.cardId = card._id;