[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,8 +1470,11 @@ export default function ProductAllSection({
})()} */}
</Container>
{/* Theme Item Button - 새로운 bottomButtonWrapper로 감싸기 */}
{/* {panelInfo && panelInfo.type === 'theme' && !openThemeItemOverlay && ( */}
{/* Theme Item Button - theme 타입이고 themeProducts 데이터가 있을 때만 표시 */}
{panelInfo &&
panelInfo.type === 'theme' &&
themeProducts &&
themeProducts.length > 0 && (
<Container
className={css.bottomButtonWrapper}
spotlightId="theme-item-button-container"
@@ -1489,7 +1492,7 @@ export default function ProductAllSection({
<img src={arrowDownIcon} className={css.themeButtonIcon} />
</TButton>
</Container>
{/* )} */}
)}
<DetailMobileSendPopUp
ismobileSendPopupOpen={mobileSendPopupOpen}