Fix DatePicker panel position, close #6347

This commit is contained in:
afc163 2017-06-03 01:37:02 +08:00
parent dc314983b9
commit 0a1c0712a2

View File

@ -125,7 +125,7 @@ export default function createPicker(TheCalendar): any {
) : null; ) : null;
const input = ({ value: inputValue }) => ( const input = ({ value: inputValue }) => (
<span> <div>
<input <input
disabled={props.disabled} disabled={props.disabled}
readOnly readOnly
@ -135,7 +135,7 @@ export default function createPicker(TheCalendar): any {
/> />
{clearIcon} {clearIcon}
<span className={`${prefixCls}-picker-icon`} /> <span className={`${prefixCls}-picker-icon`} />
</span> </div>
); );
const pickerValue = value; const pickerValue = value;