Skip to content

Commit

Permalink
textInput had typo (was capitalized)
Browse files Browse the repository at this point in the history
textInput was spelled "TextInput" which conflicted with docs and threw an error.
  • Loading branch information
camerow committed Sep 9, 2015
1 parent cb2abf4 commit 34b6bb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/question.js
Expand Up @@ -156,7 +156,7 @@ Question.defaultProps = {
value : undefined,
input : {
default : undefined,
type : 'TextInput',
type : 'textInput',
limit : undefined,
placeholder : undefined
},
Expand All @@ -169,4 +169,4 @@ Question.defaultProps = {
renderError : undefined
};

module.exports = Question;
module.exports = Question;

0 comments on commit 34b6bb8

Please sign in to comment.