diff --git a/src/components/homesections/homesections.js b/src/components/homesections/homesections.js index 956901b629..49b1062cc5 100644 --- a/src/components/homesections/homesections.js +++ b/src/components/homesections/homesections.js @@ -629,18 +629,23 @@ define(['connectionManager', 'cardBuilder', 'appSettings', 'dom', 'apphost', 'la function getOnNowItemsHtml(items) { var cardLayout = false; return cardBuilder.getCardsHtml({ - items: items, - preferThumb: true, - shape: getThumbShape(), - overlayText: false, - showTitle: true, - showParentTitle: true, - lazy: true, - overlayPlayButton: true, - context: 'home', - centerText: !cardLayout, - allowBottomPadding: !enableScrollX(), - cardLayout: cardLayout + items: items, + preferThumb: 'auto', + inheritThumb: false, + shape: (enableScrollX() ? 'autooverflow' : 'auto'), + showParentTitleOrTitle: true, + showTitle: true, + centerText: true, + coverImage: true, + overlayText: false, + allowBottomPadding: !enableScrollX(), + showAirTime: true, + showChannelName: false, + showAirDateTime: false, + showAirEndTime: true, + defaultShape: getThumbShape(), + lines: 3, + overlayPlayButton: true }); }