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