浏览代码

back to ReactiveCache.getCards and still fixing the flip "Card Drag/Drop" issue

Martin Filser 2 年之前
父节点
当前提交
a37caf459e
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      client/components/lists/listBody.js

+ 2 - 2
client/components/lists/listBody.js

@@ -202,11 +202,11 @@ BlazeComponent.extendComponent({
       archived: false,
     };
     if (swimlaneId) selector.swimlaneId = swimlaneId;
-    const ret = Cards.find(Filter.mongoSelector(selector), {
+    const ret = ReactiveCache.getCards(Filter.mongoSelector(selector), {
       // sort: ['sort'],
       sort: sortBy,
       limit,
-    });
+    }, true);
     return ret;
   },