From 34b6bb874ceed552c05af7498584db0577f2b995 Mon Sep 17 00:00:00 2001 From: Will Cameron Date: Wed, 9 Sep 2015 14:22:41 -0700 Subject: [PATCH] textInput had typo (was capitalized) textInput was spelled "TextInput" which conflicted with docs and threw an error. --- src/question.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/question.js b/src/question.js index 5bd2d426..45954352 100644 --- a/src/question.js +++ b/src/question.js @@ -156,7 +156,7 @@ Question.defaultProps = { value : undefined, input : { default : undefined, - type : 'TextInput', + type : 'textInput', limit : undefined, placeholder : undefined }, @@ -169,4 +169,4 @@ Question.defaultProps = { renderError : undefined }; -module.exports = Question; \ No newline at end of file +module.exports = Question;