From 0528175457a9fb150eb6a7b39d9b917d513dd832 Mon Sep 17 00:00:00 2001 From: dongyoungKo Date: Thu, 19 Jun 2025 10:31:51 +0900 Subject: [PATCH] =?UTF-8?q?[=EC=9D=B4=EC=8A=88][EVENT]=20Featured=20Brands?= =?UTF-8?q?=20/=20Live=20/=20=EC=9A=B0=EC=B8=A1=20=EB=B0=94=20=EC=83=81?= =?UTF-8?q?=EB=8B=A8=EC=97=90=20Featured=20Shows=EA=B0=80=20=EB=85=B8?= =?UTF-8?q?=EC=B6=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [수정사항] Video Click할때 "Y" 값 대신 "Y "로 공백이 하나 들어가 삼항연산자가 의도한대로 계산되지 않았던 점 개선 --- .../LiveChannelsVerticalContents.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/LiveChannels/LiveChannelsVerticalContents/LiveChannelsVerticalContents.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/LiveChannels/LiveChannelsVerticalContents/LiveChannelsVerticalContents.jsx index b8703888..b961203f 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/LiveChannels/LiveChannelsVerticalContents/LiveChannelsVerticalContents.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/LiveChannels/LiveChannelsVerticalContents/LiveChannelsVerticalContents.jsx @@ -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);