mirror of
https://github.com/wekan/wekan.git
synced 2026-01-02 07:38:49 +01:00
Avoid importing imported cards or boards
This commit is contained in:
parent
64367a01dd
commit
a93de07fb9
2 changed files with 8 additions and 7 deletions
|
|
@ -337,6 +337,7 @@ BlazeComponent.extendComponent({
|
|||
swimlaneId: this.selectedSwimlaneId.get(),
|
||||
listId: this.selectedListId.get(),
|
||||
archived: false,
|
||||
importedId: null,
|
||||
});
|
||||
},
|
||||
|
||||
|
|
@ -436,7 +437,7 @@ BlazeComponent.extendComponent({
|
|||
|
||||
results() {
|
||||
const board = Boards.findOne(this.selectedBoardId.get());
|
||||
return board.searchCards(this.term.get());
|
||||
return board.searchCards(this.term.get(), true);
|
||||
},
|
||||
|
||||
events() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue