milankinen / culli

[NOT MAINTAINED] Cycle Utility Libraries for clean, well-structured and concise code
MIT License
24 stars 0 forks source link

Nested lists with RxJS 5.0 #5

Open goodmind opened 7 years ago

goodmind commented 7 years ago

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

milankinen commented 7 years ago

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.