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

This commit is contained in:
Martin Filser 2023-03-07 22:33:46 +01:00
parent 1c0a1e021a
commit a37caf459e

View file

@ -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;
},