diff --git a/dist/react-bootstrap-datetimepicker.js b/dist/react-bootstrap-datetimepicker.js index 6fa6d9d3..5461e965 100644 --- a/dist/react-bootstrap-datetimepicker.js +++ b/dist/react-bootstrap-datetimepicker.js @@ -472,9 +472,7 @@ return /******/ (function(modules) { // webpackBootstrap daysOfWeekDisabled: [], size: _ConstantsJs2["default"].SIZE_MEDIUM, mode: _ConstantsJs2["default"].MODE_DATETIME, - onChange: function onChange(x) { - console.log(x); - } + onChange: function onChange(x) {} }, enumerable: true }, { @@ -2608,4 +2606,4 @@ return /******/ (function(modules) { // webpackBootstrap /***/ } /******/ ]) }); -; \ No newline at end of file +; diff --git a/src/DateTimeField.js b/src/DateTimeField.js index 2e2d342b..8bdb2a80 100644 --- a/src/DateTimeField.js +++ b/src/DateTimeField.js @@ -13,9 +13,7 @@ export default class DateTimeField extends Component { daysOfWeekDisabled: [], size: Constants.SIZE_MEDIUM, mode: Constants.MODE_DATETIME, - onChange: (x) => { - console.log(x); - } + onChange: (x) => {} } resolvePropsInputFormat = () => { @@ -382,4 +380,3 @@ export default class DateTimeField extends Component { ); } } -