diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ProductOverview/ProductPriceDisplay/ProductPriceDisplay.module.less b/com.twin.app.shoptime/src/views/DetailPanel/ProductOverview/ProductPriceDisplay/ProductPriceDisplay.module.less index d743b11b..fd40eb4d 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ProductOverview/ProductPriceDisplay/ProductPriceDisplay.module.less +++ b/com.twin.app.shoptime/src/views/DetailPanel/ProductOverview/ProductPriceDisplay/ProductPriceDisplay.module.less @@ -105,7 +105,7 @@ justify-content: flex-start; align-items: center; .enrgLbImg { - width:62px; + width:70px; border:4px solid transparent; &:focus { border: 4px solid @PRIMARY_COLOR_RED; diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeContents.jsx b/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeContents.jsx index 3692627b..cdfb2730 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeContents.jsx +++ b/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeContents.jsx @@ -248,6 +248,7 @@ export default function ThemeContents({ handleItemFocus?.(index); }} onMouseEnter={() => Spotlight.focus(spotlightItemId)} + euEnrgLblInfos={euEnrgLblInfos} /> ); }, diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.jsx b/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.jsx index 615646c6..60156bfa 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.jsx +++ b/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.jsx @@ -51,6 +51,7 @@ export default function ThemeItemCard({ spotlightId, dataSpotlightDefault, onFocused, + euEnrgLblInfos }) { const dispatch = useDispatch(); const [isFocused, setIsFocused] = useState(false); @@ -211,9 +212,9 @@ export default function ThemeItemCard({ ))} )} */} - {/* {mockEnergyLabel && mockEnergyLabel.length > 0 && ( + {euEnrgLblInfos && euEnrgLblInfos.length > 0 && (
- {mockEnergyLabel.map((label, labelIndex) => ( + {euEnrgLblInfos.map((label, labelIndex) => ( ))}
- )} */} + )} {(() => { diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.module.less b/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.module.less index 55d5d9a1..4c39484c 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.module.less +++ b/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.module.less @@ -220,3 +220,7 @@ } } } + +.energyImage { + max-height:800px; +} \ No newline at end of file