[이슈][EVENT] Featured Brands / Live / 우측 바 상단에 Featured Shows가 노출
[수정사항] Video Click할때 "Y" 값 대신 "Y "로 공백이 하나 들어가 삼항연산자가 의도한대로 계산되지 않았던 점 개선
This commit is contained in:
@@ -124,7 +124,7 @@ const LiveChannelsVerticalContents = ({
|
||||
patnrId,
|
||||
showId,
|
||||
showUrl,
|
||||
shptmBanrTpNm: liveYn === "Y " ? "LIVE" : "VOD",
|
||||
shptmBanrTpNm: liveYn === "Y" ? "LIVE" : "VOD",
|
||||
})
|
||||
);
|
||||
});
|
||||
@@ -168,7 +168,7 @@ const LiveChannelsVerticalContents = ({
|
||||
patnrId,
|
||||
showId,
|
||||
showUrl,
|
||||
shptmBanrTpNm: liveYn === "Y " ? "LIVE" : "VOD",
|
||||
shptmBanrTpNm: liveYn === "Y" ? "LIVE" : "VOD",
|
||||
sourcePanel: panel_names.FEATURED_BRANDS_PANEL,
|
||||
})
|
||||
);
|
||||
@@ -191,7 +191,7 @@ const LiveChannelsVerticalContents = ({
|
||||
}
|
||||
|
||||
videoFocusTimeoutJob.current.stop();
|
||||
}, [chanId, dispatch, patnrId, showId, showUrl]);
|
||||
}, [chanId, dispatch, patnrId, showId, showUrl, liveYn]);
|
||||
|
||||
const handleFocus = useCallback(() => {
|
||||
setIsFocused(true);
|
||||
|
||||
Reference in New Issue
Block a user