[251123] fix: DetailPanel ThemeContent-7

🕐 커밋 시간: 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()
This commit is contained in:
2025-11-23 13:01:15 +09:00
parent 14e10e5b41
commit cbd52e1b98

View File

@@ -1470,26 +1470,29 @@ export default function ProductAllSection({
})()} */}
</Container>
{/* Theme Item Button - 새로운 bottomButtonWrapper로 감싸기 */}
{/* {panelInfo && panelInfo.type === 'theme' && !openThemeItemOverlay && ( */}
<Container
className={css.bottomButtonWrapper}
spotlightId="theme-item-button-container"
>
<TButton
className={css.themeButton}
onClick={handleThemeItemButtonClick}
spotlightId="theme-open-button"
onMouseDown={(e) => {
e.preventDefault();
handleThemeItemButtonClick();
}}
>
<div>{$L('THEME ITEM')}</div>
<img src={arrowDownIcon} className={css.themeButtonIcon} />
</TButton>
</Container>
{/* )} */}
{/* Theme Item Button - theme 타입이고 themeProducts 데이터가 있을 때만 표시 */}
{panelInfo &&
panelInfo.type === 'theme' &&
themeProducts &&
themeProducts.length > 0 && (
<Container
className={css.bottomButtonWrapper}
spotlightId="theme-item-button-container"
>
<TButton
className={css.themeButton}
onClick={handleThemeItemButtonClick}
spotlightId="theme-open-button"
onMouseDown={(e) => {
e.preventDefault();
handleThemeItemButtonClick();
}}
>
<div>{$L('THEME ITEM')}</div>
<img src={arrowDownIcon} className={css.themeButtonIcon} />
</TButton>
</Container>
)}
<DetailMobileSendPopUp
ismobileSendPopupOpen={mobileSendPopupOpen}