From cbd52e1b984d0949ab2ad983fa248d416a50a867 Mon Sep 17 00:00:00 2001 From: optrader Date: Sun, 23 Nov 2025 13:01:15 +0900 Subject: [PATCH] [251123] fix: DetailPanel ThemeContent-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ๐Ÿ• ์ปค๋ฐ‹ ์‹œ๊ฐ„: 2025. 11. 23. 13:01:15 ๐Ÿ“Š ๋ณ€๊ฒฝ ํ†ต๊ณ„: โ€ข ์ด ํŒŒ์ผ: 1๊ฐœ โ€ข ์ถ”๊ฐ€: +19์ค„ โ€ข ์‚ญ์ œ: -19์ค„ ๐Ÿ“ ์ˆ˜์ •๋œ ํŒŒ์ผ: ~ com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx ๐Ÿ”ง ํ•จ์ˆ˜ ๋ณ€๊ฒฝ ๋‚ด์šฉ: ๐Ÿ“„ com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx (javascript): ๐Ÿ”„ Modified: extractProductMeta() --- .../ProductAllSection/ProductAllSection.jsx | 43 ++++++++++--------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx b/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx index c1f0f87c..502bf9ad 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx +++ b/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx @@ -1470,26 +1470,29 @@ export default function ProductAllSection({ })()} */} - {/* Theme Item Button - ์ƒˆ๋กœ์šด bottomButtonWrapper๋กœ ๊ฐ์‹ธ๊ธฐ */} - {/* {panelInfo && panelInfo.type === 'theme' && !openThemeItemOverlay && ( */} - - { - e.preventDefault(); - handleThemeItemButtonClick(); - }} - > -
{$L('THEME ITEM')}
- -
-
- {/* )} */} + {/* Theme Item Button - theme ํƒ€์ž…์ด๊ณ  themeProducts ๋ฐ์ดํ„ฐ๊ฐ€ ์žˆ์„ ๋•Œ๋งŒ ํ‘œ์‹œ */} + {panelInfo && + panelInfo.type === 'theme' && + themeProducts && + themeProducts.length > 0 && ( + + { + e.preventDefault(); + handleThemeItemButtonClick(); + }} + > +
{$L('THEME ITEM')}
+ +
+
+ )}