culli
culli copied to clipboard
Nested lists with RxJS 5.0
With state like this
{ users: [ {id: ..., users: [ { id: ..., note: '' } ] } ] }
when I'm trying to do dynamic list in first component everything is ok, but in second component with state like this
{ id: ..., users: [ { id: ..., note: '' } ] }
nothing works with value.select('users').
When I'm trying to do
props.users.value.subscribe(...)
I got this error TypeError: this.source.run is not a function
OMG for some reason I haven't get notification about this issue... Sorry! 😕
This definitely a bug, thanks for reporting! I'll take a look.