mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 07:20:12 +01:00
Import board: now proper createdAt dates
This commit is contained in:
parent
468694a84c
commit
595d5f97ac
2 changed files with 82 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ const ImportPopup = BlazeComponent.extendComponent({
|
|||
this.setError(error.error);
|
||||
} else {
|
||||
Filter.addException(response);
|
||||
Popup.close();
|
||||
this.onFinish(response);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
|
@ -43,6 +43,10 @@ const ImportPopup = BlazeComponent.extendComponent({
|
|||
setError(error) {
|
||||
this.error.set(error);
|
||||
},
|
||||
|
||||
onFinish() {
|
||||
Popup.close();
|
||||
}
|
||||
});
|
||||
|
||||
ImportPopup.extendComponent({
|
||||
|
|
@ -76,5 +80,9 @@ ImportPopup.extendComponent({
|
|||
getLabel() {
|
||||
return 'import-board-trello-instruction';
|
||||
},
|
||||
|
||||
onFinish(response) {
|
||||
Utils.goBoardId(response);
|
||||
},
|
||||
}).register('boardImportBoardPopup');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue