diff options
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | src/Panel.jsx | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/package.json b/package.json index 4690f1e..fee536b 100644 --- a/package.json +++ b/package.json | |||
@@ -1,6 +1,6 @@ | |||
1 | { | 1 | { |
2 | "name": "rc-time-picker", | 2 | "name": "rc-time-picker", |
3 | "version": "2.0.0", | 3 | "version": "2.0.1", |
4 | "description": "React TimePicker", | 4 | "description": "React TimePicker", |
5 | "keywords": [ | 5 | "keywords": [ |
6 | "react", | 6 | "react", |
diff --git a/src/Panel.jsx b/src/Panel.jsx index f70cf38..a5464c4 100644 --- a/src/Panel.jsx +++ b/src/Panel.jsx | |||
@@ -41,6 +41,9 @@ const Panel = React.createClass({ | |||
41 | prefixCls: 'rc-time-picker-panel', | 41 | prefixCls: 'rc-time-picker-panel', |
42 | onChange: noop, | 42 | onChange: noop, |
43 | onClear: noop, | 43 | onClear: noop, |
44 | disabledHours: noop, | ||
45 | disabledMinutes: noop, | ||
46 | disabledSeconds: noop, | ||
44 | defaultOpenValue: moment(), | 47 | defaultOpenValue: moment(), |
45 | }; | 48 | }; |
46 | }, | 49 | }, |