fix DatePicker[showTime] onChange, close #3523

This commit is contained in:
afc163 2016-10-20 22:11:55 +08:00
parent 1e5264bad7
commit ea6a84d9cf

View File

@ -4,6 +4,7 @@ import MonthCalendar from 'rc-calendar/lib/MonthCalendar';
import RcDatePicker from 'rc-calendar/lib/Picker';
import classNames from 'classnames';
import assign from 'object-assign';
import omit from 'omit.js';
import Icon from '../icon';
export interface PickerProps {
@ -51,7 +52,7 @@ export default function createPicker(TheCalendar) {
},
render() {
const props = this.props;
const props = omit(this.props, ['onChange']);
const prefixCls = props.prefixCls;
const locale = props.locale;
@ -72,9 +73,9 @@ export default function createPicker(TheCalendar) {
let calendarHandler: Object = {
onOk: this.handleChange,
// fix https://github.com/ant-design/ant-design/issues/1902
onSelect: (value) => {
if (!('value' in this.props)) {
this.setState({ value });
onSelect: (value, cause) => {
if (cause && cause.source === 'todayButton') {
this.handleChange(value);
}
},
};