Jellyfin Forum
Show all rows on the homepage completely - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions)
+--- Thread: Show all rows on the homepage completely (/t-show-all-rows-on-the-homepage-completely)



Show all rows on the homepage completely - lukass2000 - 2024-10-17

Hello,

On the homepage, a different number of "pictures" are always displayed.
Sometimes two pictures, or three, often only one.

According to which criteria is this displayed?
Can perhaps be set so that the entire row is always displayed completely?

   

Thank you Smiling-face


RE: Show all rows on the homepage completely - TheDreadPirate - 2024-10-17

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/blob/release-10.9.z/src/components/homesections/sections/recentlyAdded.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;
        }



RE: Show all rows on the homepage completely - lukass2000 - 2024-10-17

Hello,
yes, the screenshot is from the Jellyfin demo server.

I didn't know if I was allowed to take a direct screenshot of my server.
I didn't know if the covers were protected by copyright in any way.

An example directly from my server:
The day before yesterday I added 4 series to the "Series" library.
However, only 3 are listed as newly added on the home screen?

Today I added 2 more series.
On the home screen, only one series is now displayed as newly added?

Shouldn't there actually be 5 displayed now?

Thanks Smiling-face


RE: Show all rows on the homepage completely - theguymadmax - 2024-10-17

That's a know bug. The number of shows may vary slightly due to this issue.


RE: Show all rows on the homepage completely - lukass2000 - 2024-10-17

Okay, thanks Smiling-face

Then maybe it will be fixed in the future.

Thanks