From 4795533fe8beb4b1620dbb5af1fb175c64765e1e Mon Sep 17 00:00:00 2001 From: Danny Hurlburt Date: Wed, 24 May 2017 10:26:44 -0600 Subject: [PATCH] Bind handleChange Instead of Calling (#9764) --- docs/integrating-with-other-libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrating-with-other-libraries.md b/docs/integrating-with-other-libraries.md index 4f393a97..85704ab5 100644 --- a/docs/integrating-with-other-libraries.md +++ b/docs/integrating-with-other-libraries.md @@ -320,7 +320,7 @@ class Item extends React.Component { class List extends React.Component { constructor(props) { super(props); - this.handleChange = this.handleChange(); + this.handleChange = this.handleChange.bind(this); } handleChange() {