Explorar el Código

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

Martin Filser hace 2 años
padre
commit
a37caf459e
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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;
   },