Fix wrong import

This commit is contained in:
cyril lopez 2018-02-06 16:58:29 +01:00
parent 451f26414c
commit 23da9263a4
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/** /**
* *
* inputDate * InputDate
* *
*/ */

View File

@ -13,7 +13,7 @@ import cn from 'classnames';
import Label from 'components/Label'; import Label from 'components/Label';
import InputDescription from 'components/InputDescription'; import InputDescription from 'components/InputDescription';
import InputErrors from 'components/InputErrors'; import InputErrors from 'components/InputErrors';
import Inputdate from 'components/Inputdate'; import InputDate from 'components/InputDate';
import styles from './styles.scss'; import styles from './styles.scss';
@ -104,7 +104,7 @@ class InputDateWithErrors extends React.Component { // eslint-disable-line react
message={label} message={label}
style={labelStyle} style={labelStyle}
/> />
<Inputdate <InputDate
autoFocus={autoFocus} autoFocus={autoFocus}
className={inputClassName} className={inputClassName}
disabled={disabled} disabled={disabled}