Skip to content

Commit

Permalink
Merge pull request #270 from appfolio/fixCurrencyInputClassNamePropTypes
Browse files Browse the repository at this point in the history
mj - change currencyInput className proptype from number to string
  • Loading branch information
gthomas-appfolio authored Aug 4, 2017
2 parents 51e3869 + 20bb9cb commit 2069540
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/CurrencyInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ CurrencyInput.defaultProps = {
};

CurrencyInput.propTypes = {
allowDecimal: React.PropTypes.bool,
allowNegative: React.PropTypes.bool,
className: PropTypes.number,
includeThousandsSeparator: React.PropTypes.bool,
allowDecimal: PropTypes.bool,
allowNegative: PropTypes.bool,
className: PropTypes.string,
includeThousandsSeparator: PropTypes.bool,
size: PropTypes.string
};

Expand Down

0 comments on commit 2069540

Please sign in to comment.