ソースを参照

Merge pull request #4694 from mfilser/checklist_copy_move_dialog_sometimes_empty

Checklist copy/move dialog was sometimes empty
Lauri Ojansivu 2 年 前
コミット
d1ad8c23ec
1 ファイル変更1 行追加1 行削除
  1. 1 1
      client/lib/dialogWithBoardSwimlaneListCard.js

+ 1 - 1
client/lib/dialogWithBoardSwimlaneListCard.js

@@ -23,7 +23,7 @@ export class DialogWithBoardSwimlaneListCard extends DialogWithBoardSwimlaneList
   /** returns all available cards of the current list */
   cards() {
     const list = Lists.findOne(this.selectedListId.get());
-    let ret = {}
+    let ret = [];
     if (list) {
       ret = list.cards(this.selectedSwimlaneId.get());
     }