@lemon-fe/components 0.1.42 → 0.1.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -198,7 +198,7 @@ export default function SelectView(props) {
198
198
  return item === key;
199
199
  });
200
200
 
201
- if (index > 0) {
201
+ if (index >= 0) {
202
202
  keys.splice(index, 1);
203
203
  } else {
204
204
  keys.push(key);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lemon-fe/components",
3
- "version": "0.1.42",
3
+ "version": "0.1.43",
4
4
  "description": "> TODO: description",
5
5
  "author": "鲁盛杰 <lusj@cnlemon.net>",
6
6
  "homepage": "",
@@ -41,5 +41,5 @@
41
41
  "react": "^17.0.2",
42
42
  "react-dom": "^17.0.2"
43
43
  },
44
- "gitHead": "e08613f24c7f5469133faffbed885dfed240b49c"
44
+ "gitHead": "ddcaf1a6b0e663addb2e833ad6f172bb7e83e356"
45
45
  }