2024-10-17, 03:08 PM 
(This post was last modified: 2024-10-17, 03:09 PM by TheDreadPirate.)
		
	
	
		This looks like the demo server.  Considering there is only one TV show on there, there is only 1 item to display in the "Recently added TV Shows" row.
But on an actual Jellyfin server the limit on the number of items varies by type.
https://github.com/jellyfin/jellyfin-web...ded.ts#L23
	
	  
	
	
But on an actual Jellyfin server the limit on the number of items varies by type.
https://github.com/jellyfin/jellyfin-web...ded.ts#L23
Code:
return function () {
        const apiClient = ServerConnections.getApiClient(serverId);
        let limit = 16;
        if (enableOverflow) {
            if (collectionType === CollectionType.Music) {
                limit = 30;
            }
        } else if (collectionType === CollectionType.Tvshows) {
            limit = 5;
        } else if (collectionType === CollectionType.Music) {
            limit = 9;
        } else {
            limit = 8;
        }
