@bytebrand/fe-ui-core 4.1.228 → 4.1.229
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.
package/package.json
CHANGED
|
@@ -386,7 +386,10 @@ export default memo(VehicleSmallCard, (props, nextProps) => { // shouldComponent
|
|
|
386
386
|
stats: { statsData },
|
|
387
387
|
isCarInFavorite,
|
|
388
388
|
compareProps,
|
|
389
|
-
children
|
|
389
|
+
children,
|
|
390
|
+
slider: {
|
|
391
|
+
images
|
|
392
|
+
}
|
|
390
393
|
} = props;
|
|
391
394
|
|
|
392
395
|
return t === nextProps.t
|
|
@@ -397,5 +400,6 @@ export default memo(VehicleSmallCard, (props, nextProps) => { // shouldComponent
|
|
|
397
400
|
&& isCarInFavorite === nextProps.isCarInFavorite
|
|
398
401
|
&& statsData === nextProps.stats.statsData
|
|
399
402
|
&& _get(compareProps, 'toCompare') === _get(compareProps, 'nextProps.toCompare')
|
|
400
|
-
&& children === nextProps.children
|
|
403
|
+
&& children === nextProps.children
|
|
404
|
+
&& images === nextProps.slider.images;
|
|
401
405
|
});
|