-
Notifications
You must be signed in to change notification settings - Fork 172
Remove throttle for editorValue, fix workspace bugs #166
New issue
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
Conversation
Pull Request Test Coverage Report for Build 195
💛 - Coveralls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, just that one bug with the shared value
src/components/Playground.tsx
Outdated
return parsePrgrm(this.props) || this.props.editorValue === undefined | ||
? defaultPlaygroundText | ||
: this.props.editorValue | ||
return parsePrgrm(this.props) || this.props.editorValue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As of 20f72c8, the playground cannot be edited after the playground link is accessed. If i recall, it is because of how an empty string acts as false
in the ||
check. Can you try to revert this line to see if it fixes it?
…cademy#166) * Add try/rescue at Cadet.Updater.Public.init/1 * Add test for failing init/1 in non-prod
Features