You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to implement a list that features sorting and filtering. Currently I am stuck at filtering.
The list itself works when only doing Collection.pluck(todoListItems$, item => item.DOM);
And it also works when I pluck a for example state$.
However, when I try to do Collection.pluck(todoListItems$, item => xs.combine(item.state$, item.finished$)); pluck only returns an empty Array.
The text was updated successfully, but these errors were encountered:
Hi,
I would like to implement a list that features sorting and filtering. Currently I am stuck at filtering.
The list itself works when only doing
Collection.pluck(todoListItems$, item => item.DOM);
And it also works when I pluck a for example
state$
.However, when I try to do
Collection.pluck(todoListItems$, item => xs.combine(item.state$, item.finished$));
pluck only returns an empty Array.The text was updated successfully, but these errors were encountered: