We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4833851 commit 17f1097Copy full SHA for 17f1097
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "rc-select",
3
- "version": "8.0.12",
+ "version": "8.0.13",
4
"description": "React Select",
5
"keywords": [
6
"react",
src/Select.jsx
@@ -465,7 +465,7 @@ class Select extends React.Component {
465
const value = preState.value;
466
value.forEach(v => {
467
const key = getMapKey(v);
468
- if (!optionsInfo[key]) {
+ if (!optionsInfo[key] && oldOptionsInfo[key] !== undefined) {
469
optionsInfo[key] = oldOptionsInfo[key];
470
}
471
});
0 commit comments