diff options
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | src/module/Select.jsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json index 52d9fd7..118f08c 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": "1.0.0-alpha4", | 3 | "version": "1.0.0-alpha5", |
4 | "description": "React TimePicker", | 4 | "description": "React TimePicker", |
5 | "keywords": [ | 5 | "keywords": [ |
6 | "react", | 6 | "react", |
diff --git a/src/module/Select.jsx b/src/module/Select.jsx index 0b91ac5..8cf4e2d 100644 --- a/src/module/Select.jsx +++ b/src/module/Select.jsx | |||
@@ -62,7 +62,7 @@ const Select = React.createClass({ | |||
62 | // move to selected item | 62 | // move to selected item |
63 | const select = ReactDom.findDOMNode(this); | 63 | const select = ReactDom.findDOMNode(this); |
64 | const list = ReactDom.findDOMNode(this.refs.list); | 64 | const list = ReactDom.findDOMNode(this.refs.list); |
65 | let index = this.props.selectedIndex - 1; | 65 | let index = this.props.selectedIndex; |
66 | if (index < 0) { | 66 | if (index < 0) { |
67 | index = 0; | 67 | index = 0; |
68 | } | 68 | } |