summaryrefslogtreecommitdiffstats
path: root/models/trelloCreator.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-12-15 20:39:01 +0200
committerLauri Ojansivu <x@xet7.org>2018-12-15 20:39:01 +0200
commitdbb1a86ca377e551063cc04c5189fad4aa9148c0 (patch)
tree0c2eebc93e53c0416faa56b31fb0bebd9af60ca1 /models/trelloCreator.js
parentc066883dbd76110be19d75bd77ef2a0270dadda2 (diff)
downloadwekan-dbb1a86ca377e551063cc04c5189fad4aa9148c0.tar.gz
wekan-dbb1a86ca377e551063cc04c5189fad4aa9148c0.tar.bz2
wekan-dbb1a86ca377e551063cc04c5189fad4aa9148c0.zip
- Admin Panel / Layout / Custom Product Name now changes webpage title.
Thanks to xet7 ! Related #1196
Diffstat (limited to 'models/trelloCreator.js')
-rw-r--r--models/trelloCreator.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/models/trelloCreator.js b/models/trelloCreator.js
index b5a255cc..3ac511a5 100644
--- a/models/trelloCreator.js
+++ b/models/trelloCreator.js
@@ -268,7 +268,7 @@ export class TrelloCreator {
}
// insert card
const cardId = Cards.direct.insert(cardToCreate);
- // keep track of Trello id => WeKan id
+ // keep track of Trello id => Wekan id
this.cards[card.id] = cardId;
// log activity
// Activities.direct.insert({
@@ -431,7 +431,7 @@ export class TrelloCreator {
sort: checklist.pos,
};
const checklistId = Checklists.direct.insert(checklistToCreate);
- // keep track of Trello id => WeKan id
+ // keep track of Trello id => Wekan id
this.checklists[checklist.id] = checklistId;
// Now add the items to the checklistItems
let counter = 0;