ldx-widgets
Advanced tools
Comparing version 4.10.1 to 4.10.2
(function() { | ||
var PropTypes, Pvr, React, SelectPvr, SelectPvrOption, animationMixin, assign, cloneDeep, createClass, div, filter; | ||
var PropTypes, Pvr, React, SelectPvr, SelectPvrOption, animationMixin, assign, cloneDeep, createClass, div, filter, isEqual; | ||
@@ -16,2 +16,4 @@ React = require('react'); | ||
isEqual = require('lodash/isEqual'); | ||
animationMixin = require('../mixins/animation_mixin'); | ||
@@ -273,3 +275,3 @@ | ||
o = selectedOptions[k]; | ||
if (o === option) { | ||
if (isEqual(o, option)) { | ||
return true; | ||
@@ -280,3 +282,3 @@ } | ||
} else { | ||
return selectedOptions === option; | ||
return isEqual(selectedOptions, option); | ||
} | ||
@@ -283,0 +285,0 @@ } |
{ | ||
"name": "ldx-widgets", | ||
"version": "4.10.1", | ||
"version": "4.10.2", | ||
"description": "widgets", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
10812
1094372
291