diff --git a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerItemCard/PlayerItemCard.jsx b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerItemCard/PlayerItemCard.jsx index 976b3b74..abf59895 100644 --- a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerItemCard/PlayerItemCard.jsx +++ b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerItemCard/PlayerItemCard.jsx @@ -107,7 +107,7 @@ export default memo(function PlayerItemCard({ }, [onFocus]); const progressStyle = useMemo(() => ({ width: `${percent}%` }), [percent]); - const ariaLabel = "Selected, " + patnerName + " " + productName; + const ariaLabel = "Selected, " + patnerName + " " + productName(); return ( {patnerName} -

+

{liveInfo && (
{ - return { __html: showNm }; + return showNm + ? { __html: showNm } + : { __html: $L("No Livestream scheduled yet") }; }; return ( @@ -81,11 +74,7 @@ export default function LiveChannelContents({ logo={patncLogoPath} imageSource={thumbnailUrl ? thumbnailUrl : dfltThumbnailImgPath} videoVerticalVisible={videoVerticalVisible} - productName={ - showNm - ? showNameDangerouslySetInnerHTML - : $L("No Livestream scheduled yet") - } + productName={showNameDangerouslySetInnerHTML} patnerName={patncNm} onClick={handleItemClick} onFocus={handleFocus()}