mirror of
https://github.com/wekan/wekan.git
synced 2025-04-20 12:07:11 -04:00
Fix: Trello board import fails because of missing "Swimlane id".
Thanks to xet7 ! Closes #1442
This commit is contained in:
parent
735907977d
commit
65c081acc0
3 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
# Upcoming Wekan release
|
||||
|
||||
This release fixes the following bugs:
|
||||
|
||||
* [Fix: Trello board import fails because of missing "Swimlane id"](https://github.com/wekan/wekan/issues/1442).
|
||||
|
||||
Thanks to GitHub user xet7 for contributions.
|
||||
|
||||
# v0.67 2018-01-28 Wekan release
|
||||
|
||||
This release fixes the following bugs:
|
||||
|
|
|
@ -149,6 +149,7 @@ export class TrelloCreator {
|
|||
isAdmin: true,
|
||||
isActive: true,
|
||||
isCommentOnly: false,
|
||||
swimlaneId: false,
|
||||
}],
|
||||
permission: this.getPermission(trelloBoard.prefs.permissionLevel),
|
||||
slug: getSlug(trelloBoard.name) || 'board',
|
||||
|
@ -175,6 +176,7 @@ export class TrelloCreator {
|
|||
isAdmin: this.getAdmin(trelloMembership.memberType),
|
||||
isActive: true,
|
||||
isCommentOnly: false,
|
||||
swimlaneId: false,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -146,6 +146,7 @@ export class WekanCreator {
|
|||
isActive: true,
|
||||
isAdmin: true,
|
||||
isCommentOnly: false,
|
||||
swimlaneId: false,
|
||||
}],
|
||||
// Standalone Export has modifiedAt missing, adding modifiedAt to fix it
|
||||
modifiedAt: this._now(boardToImport.modifiedAt),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue