diff options
Diffstat (limited to 'models/import.js')
-rw-r--r-- | models/import.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/models/import.js b/models/import.js index 709d1699..39a8835e 100644 --- a/models/import.js +++ b/models/import.js @@ -229,6 +229,7 @@ class TrelloCreator { title: card.name, // we attribute the card to its creator if available userId: this._user(this.createdBy.cards[card.id]), + dueAt: card.due ? this._now(card.due) : null, }; // add labels if (card.idLabels) { |