fix indent of AutoComplete

This commit is contained in:
乐仪 2017-04-22 10:57:28 +08:00
parent b694608af4
commit 50b7ce55fe

View File

@ -53,12 +53,12 @@ export default class AutoComplete extends React.Component<AutoCompleteProps, any
React.Children.only(this.props.children) :
<Input/>;
return (
<InputElement
{...element.props}
className={classNames('ant-input', element.props.className)}
>
{element}
</InputElement>
<InputElement
{...element.props}
className={classNames('ant-input', element.props.className)}
>
{element}
</InputElement>
);
}