[SHOPTIME-3615] Trending Now / Popular Show / 좌우 화살표에 Button 이라고 두번 발화됨

[수정내용] Button이라는 내용이 두번발화하지않게 aria-label에서 button부분 삭제 , TButton에서 button 발화를 따로 해줌
This commit is contained in:
고동영
2025-02-17 10:55:32 +09:00
parent f4477e029e
commit b3d641fe6d

View File

@@ -253,7 +253,7 @@ const TrendingNowPanel = ({ panelInfo, spotlightId, isOnTop, ...rest }) => {
SpotlightIds.TRENDING_NOW_BEST_SELLER SpotlightIds.TRENDING_NOW_BEST_SELLER
)} )}
spotlightId={SpotlightIds.TRENDING_NOW_PREV_INDICATOR} spotlightId={SpotlightIds.TRENDING_NOW_PREV_INDICATOR}
ariaLabel="Move to left Button" ariaLabel="Move to left"
/> />
)} )}
<TPanel spotlightId={spotlightId}> <TPanel spotlightId={spotlightId}>
@@ -341,7 +341,7 @@ const TrendingNowPanel = ({ panelInfo, spotlightId, isOnTop, ...rest }) => {
onClick={handleTopButtonClick} onClick={handleTopButtonClick}
size={null} size={null}
spotlightId={SpotlightIds.TRENDING_NOW_TOP_BUTTON} spotlightId={SpotlightIds.TRENDING_NOW_TOP_BUTTON}
ariaLabel="Move to Top Button" ariaLabel="Move to Top"
data-wheel-point data-wheel-point
type={TYPES.topButton} type={TYPES.topButton}
/> />
@@ -361,7 +361,7 @@ const TrendingNowPanel = ({ panelInfo, spotlightId, isOnTop, ...rest }) => {
SpotlightIds.TRENDING_NOW_BEST_SELLER SpotlightIds.TRENDING_NOW_BEST_SELLER
)} )}
spotlightId={SpotlightIds.TRENDING_NOW_NEXT_INDICATOR} spotlightId={SpotlightIds.TRENDING_NOW_NEXT_INDICATOR}
ariaLabel="Move to right Button" ariaLabel="Move to right"
/> />
)} )}
</div> </div>