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 51ac2ff5..ac813be1 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 @@ -7,6 +7,7 @@ import Spotlight from "@enact/spotlight"; import { updatePanel } from "../../../../actions/panelActions"; import TVirtualGridList from "../../../../components/TVirtualGridList/TVirtualGridList"; import { LOG_MENU, panel_names } from "../../../../utils/Config"; +import { $L } from "../../../../utils/helperMethods"; import ListEmptyContents from "../../../ImagePanel/ImageSideContents/ListEmptyContents/ListEmptyContents"; import PlayerItemCard, { TYPES } from "../../PlayerItemCard/PlayerItemCard"; import css from "./LiveChannelContents.module.less"; @@ -47,6 +48,8 @@ export default function LiveChannelContents({ } = liveInfos[index]; const handleItemClick = () => { + if (!showId) return; + setSelectedIndex(index); dispatch( updatePanel({ @@ -64,7 +67,7 @@ export default function LiveChannelContents({ logo={patncLogoPath} imageSource={thumbnailUrl ? thumbnailUrl : dfltThumbnailImgPath} videoVerticalVisible={videoVerticalVisible} - productName={showNm} + productName={showNm ? showNm : $L("No Livestream scheduled yet")} patnerName={patncNm} onClick={handleItemClick} onFocus={handleFocus()}