From 6d64f9f973012518c92da8bb76f1fe3bf41e9c22 Mon Sep 17 00:00:00 2001 From: Nick Kircos Date: Wed, 21 Dec 2016 15:17:09 -0700 Subject: [PATCH] Reset local input value when creating a new option --- src/Creatable.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Creatable.js b/src/Creatable.js index b2c8982547..99f6b98143 100644 --- a/src/Creatable.js +++ b/src/Creatable.js @@ -80,6 +80,7 @@ const Creatable = React.createClass({ options.unshift(option); this.select.selectValue(option); + this.inputValue = ''; } } },