diff --git a/src/api/subsonic.ts b/src/api/subsonic.ts index f9286c5d..863f03ae 100644 --- a/src/api/subsonic.ts +++ b/src/api/subsonic.ts @@ -631,11 +631,10 @@ export async function fetchStatisticsLibraryAggregates(): Promise(); const pageSize = 500; - const maxPages = 10; - let capped = false; + const capped = false; let offset = 0; - let nextPage = getAlbumList('newest', pageSize, 0); - for (let page = 0; page < maxPages; page++) { + let nextPage = getAlbumList('alphabeticalByName', pageSize, 0); + for (;;) { try { const albums = await nextPage; for (const a of albums) { @@ -653,12 +652,8 @@ export async function fetchStatisticsLibraryAggregates(): Promise (
{s.value} - {s.label} + {s.label}
))} diff --git a/src/styles/components.css b/src/styles/components.css index 1433aef3..93aa0622 100644 --- a/src/styles/components.css +++ b/src/styles/components.css @@ -3982,6 +3982,13 @@ html.no-compositing .fs-lyrics-rail { color: var(--text-muted); } +.stats-card-label[data-tooltip] { + cursor: help; + text-decoration: underline; + text-decoration-style: dotted; + text-underline-offset: 3px; +} + /* Genre chart */ .genre-chart { background: var(--bg-card);