@bytebrand/fe-ui-core 4.1.34 → 4.1.35
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
|
@@ -346,6 +346,7 @@ export default memo(VehicleSmallCard, (props, nextProps) => { // shouldComponent
|
|
|
346
346
|
financing: { monthlyInstallment, annualMileage, withFinalInstallment },
|
|
347
347
|
leasing: { monthlyInstallment: lMonthlyInstallment }
|
|
348
348
|
},
|
|
349
|
+
isCarInFavorite,
|
|
349
350
|
children
|
|
350
351
|
} = props;
|
|
351
352
|
|
|
@@ -354,5 +355,6 @@ export default memo(VehicleSmallCard, (props, nextProps) => { // shouldComponent
|
|
|
354
355
|
&& annualMileage === nextProps.price.financing.annualMileage
|
|
355
356
|
&& withFinalInstallment === nextProps.price.financing.withFinalInstallment
|
|
356
357
|
&& lMonthlyInstallment === nextProps.price.leasing.monthlyInstallment
|
|
358
|
+
&& isCarInFavorite === nextProps.isCarInFavorite
|
|
357
359
|
&& children === nextProps.children;
|
|
358
360
|
});
|