From b18ef924947f76fcad525966ef3e768f4c72b71a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B3=A0=EB=8F=99=EC=98=81?= Date: Mon, 1 Jul 2024 16:04:33 +0900 Subject: [PATCH] =?UTF-8?q?[PlayerPanel]=20liveChannel=20noliveSteam=20tex?= =?UTF-8?q?t=20=EB=B6=84=EA=B8=B0=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PlayerTabContents/TabContents/LiveChannelContents.jsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/LiveChannelContents.jsx b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/LiveChannelContents.jsx index 2d20e6c2..e642af4c 100644 --- a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/LiveChannelContents.jsx +++ b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/LiveChannelContents.jsx @@ -60,9 +60,10 @@ export default function LiveChannelContents({ }; const showNameDangerouslySetInnerHTML = () => { - return showNm - ? { __html: showNm } - : { __html: $L("No Livestream scheduled yet") }; + if (!showId) { + return { __html: $L("No Livestream scheduled yet") }; + } + return showNm ? { __html: showNm } : { __html: patncNm }; }; return (