invertase / react-native-material-design

React Native UI Components for Material Design
http://react-native-material-design.github.io
MIT License
3.15k stars 365 forks source link

fix value is undefined #91

Closed white-ubuntu closed 8 years ago

white-ubuntu commented 8 years ago

location: /lib/IconToggle.js line 25

if (this.props.badge.value !== prevProps.badge.value) { change to if (prevProps.badge && this.props.badge.value !== prevProps.badge.value) {

mlabrum commented 8 years ago

Could you submit a pull request? (you can do it via the github interface...)