We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I added "Add new" button to the third example with the following handler:
handleAddClick: function () { var items = this.state.items, lastItem = items[items.length - 1] || '`'; // 'a' is next items.push(String.fromCharCode(lastItem.charCodeAt(0) + 1)); items.sort(); this.setState({ items: items, }); },
It throws with undefined config on this line.
config
I don't really understand Mori or lazy streams yet so I'd appreciate if you helped me figure out the issue.
The text was updated successfully, but these errors were encountered:
It seems like configs are only computed once in getInitialStateStream so they don't take new children into account.
configs
getInitialStateStream
Edit: fixed in #5
Sorry, something went wrong.
Yeah it's very manual right now. I'll abstract the whole logic away into a component/mixin soon.
Successfully merging a pull request may close this issue.
I added "Add new" button to the third example with the following handler:
It throws with undefined
config
on this line.I don't really understand Mori or lazy streams yet so I'd appreciate if you helped me figure out the issue.
The text was updated successfully, but these errors were encountered: