[이슈][EVENT] Featured Brands / Live / 우측 바 상단에 Featured Shows가 노출

[수정사항]
Video Click할때 "Y" 값 대신 "Y "로  공백이 하나 들어가 삼항연산자가 의도한대로 계산되지 않았던 점 개선
This commit is contained in:
dongyoungKo
2025-06-19 10:31:51 +09:00
parent 7e67e05aac
commit 0528175457

View File

@@ -124,7 +124,7 @@ const LiveChannelsVerticalContents = ({
patnrId, patnrId,
showId, showId,
showUrl, showUrl,
shptmBanrTpNm: liveYn === "Y " ? "LIVE" : "VOD", shptmBanrTpNm: liveYn === "Y" ? "LIVE" : "VOD",
}) })
); );
}); });
@@ -168,7 +168,7 @@ const LiveChannelsVerticalContents = ({
patnrId, patnrId,
showId, showId,
showUrl, showUrl,
shptmBanrTpNm: liveYn === "Y " ? "LIVE" : "VOD", shptmBanrTpNm: liveYn === "Y" ? "LIVE" : "VOD",
sourcePanel: panel_names.FEATURED_BRANDS_PANEL, sourcePanel: panel_names.FEATURED_BRANDS_PANEL,
}) })
); );
@@ -191,7 +191,7 @@ const LiveChannelsVerticalContents = ({
} }
videoFocusTimeoutJob.current.stop(); videoFocusTimeoutJob.current.stop();
}, [chanId, dispatch, patnrId, showId, showUrl]); }, [chanId, dispatch, patnrId, showId, showUrl, liveYn]);
const handleFocus = useCallback(() => { const handleFocus = useCallback(() => {
setIsFocused(true); setIsFocused(true);