aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorafc163 <afc163@gmail.com>2015-12-08 22:11:02 +0800
committerafc163 <afc163@gmail.com>2015-12-08 22:11:02 +0800
commit5fcf22e028bf878c5be854c19074480cadf8b4bc (patch)
treedb29d8dc35a804e7d87f41cc7c7454633f60e75a
parent3c176a6f616225c65d576881c9bbd2f5e8002e59 (diff)
downloadtime-picker-1.0.0-alpha5.tar.gz
time-picker-1.0.0-alpha5.tar.zst
time-picker-1.0.0-alpha5.zip
default select value at first position1.0.0-alpha5
-rw-r--r--package.json2
-rw-r--r--src/module/Select.jsx2
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 }