mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
fix DatePicker[showTime] onChange, close #3523
This commit is contained in:
parent
1e5264bad7
commit
ea6a84d9cf
@ -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);
|
||||
}
|
||||
},
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user