Pre release tweaks

This commit is contained in:
John Lyon-Smith
2018-05-14 18:50:08 -07:00
parent 82f2828441
commit 5d67cb69b0
6 changed files with 38 additions and 40 deletions

View File

@@ -34,7 +34,7 @@ export class BoundInput extends React.Component {
@autobind
handleChangeText(newText) {
if (this.props.binder) {
if (this && this.props && this.props.binder) {
this.setState(
this.props.binder.updateFieldValue(this.props.name, newText)
)