react-native-picker-select
Advanced tools
Comparing version 5.2.3 to 5.2.4
@@ -0,1 +1,7 @@ | ||
### v5.2.4 | ||
##### Bugfix | ||
- Fix TypeError (#139) | ||
### v5.2.3 | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "react-native-picker-select", | ||
"version": "5.2.3", | ||
"version": "5.2.4", | ||
"description": "A Picker component for React Native which emulates the native <select> interfaces for each platform", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -134,4 +134,4 @@ import React, { PureComponent } from 'react'; | ||
return { | ||
...(itemsChanged && { items }), | ||
...(selectedItemChanged && { selectedItem }), | ||
...(itemsChanged ? { items } : {}), | ||
...(selectedItemChanged ? { selectedItem } : {}), | ||
}; | ||
@@ -138,0 +138,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33332