@bytebrand/fe-ui-core 4.2.219 → 4.2.221
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 +1 -1
- package/source/components/UserDashboardPage/sections/OrderStatusSection/AdditionalOrderInfo.styl +5 -1
- package/source/components/UserDashboardPage/sections/OrderStatusSection/AdditionalOrderInfo.tsx +1 -1
- package/source/components/UserDashboardPage/sections/OrderStatusSection/OrderStatusSection.tsx +1 -1
- package/source/components/VehicleDetailedSidebar/partials/PriceContent.tsx +1 -1
package/package.json
CHANGED
package/source/components/UserDashboardPage/sections/OrderStatusSection/AdditionalOrderInfo.tsx
CHANGED
|
@@ -55,7 +55,7 @@ const AdditionalOrderInfo = ({ t, additionalOrderData, redirectToUrl, buyingType
|
|
|
55
55
|
return (
|
|
56
56
|
<div key={label} className={styles.flexContainer}>
|
|
57
57
|
<div className={styles.labelText}>{label}</div>
|
|
58
|
-
<div className={styles.labelText}>{value}</div>
|
|
58
|
+
<div className={classNames(styles.labelText, styles.priceValue)}>{value}</div>
|
|
59
59
|
</div>
|
|
60
60
|
);
|
|
61
61
|
}
|
package/source/components/UserDashboardPage/sections/OrderStatusSection/OrderStatusSection.tsx
CHANGED
|
@@ -189,7 +189,7 @@ const OrderStatusSection = ({
|
|
|
189
189
|
] : []
|
|
190
190
|
],
|
|
191
191
|
overallRate: {
|
|
192
|
-
label:
|
|
192
|
+
label: t('MyOrderPage:yourOverallPrice'),
|
|
193
193
|
value: buyingType === 'buy' ? totalPrice : monthlyInstallment
|
|
194
194
|
}
|
|
195
195
|
};
|
|
@@ -108,7 +108,7 @@ const PriceContent: React.FunctionComponent<IPriceContentProps> = ({
|
|
|
108
108
|
className={styles.infoIcon}
|
|
109
109
|
customDimensions
|
|
110
110
|
/>
|
|
111
|
-
<span>{t('sidebar.adjustRate')}</span>
|
|
111
|
+
<span>{priceTabActiveIndex === 2 ? t('sidebar.serviceProducts') : t('sidebar.adjustRate')}</span>
|
|
112
112
|
<IconSVG name='menuArrow' className={`${styles.arrowDownIcon} ${offerBlockOpen ? styles.arrowUpIcon : ''}`} customDimensions />
|
|
113
113
|
</span>
|
|
114
114
|
</span>
|