From bab325fcd36dba523d9aa1b1da385da7ffb4b019 Mon Sep 17 00:00:00 2001 From: Alexandr Date: Wed, 20 Jul 2016 18:14:39 +0400 Subject: [PATCH] Fix issue #61, remove react warning (#62) --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 20568a2..238a544 100644 --- a/src/index.js +++ b/src/index.js @@ -189,7 +189,7 @@ var MaskedInput = React.createClass({ }, render() { - var {mask, formatCharacters, size, placeholder, ...props} = this.props + var {mask, formatCharacters, size, placeholder, placeholderChar, ...props} = this.props var patternLength = this.mask.pattern.length return this.input = r }