Open goodmind opened 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').
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
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.
With state like this
when I'm trying to do dynamic list in first component everything is ok, but in second component with state like this
nothing works with
value.select('users')
.When I'm trying to do
I got this error
TypeError: this.source.run is not a function