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