Browse Source

Fix DatePicker panel position, close #6347

pull/6350/head
afc163 8 years ago
parent
commit
0a1c0712a2
  1. 4
      components/date-picker/createPicker.tsx

4
components/date-picker/createPicker.tsx

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

Loading…
Cancel
Save