From 1f9b3452fae67b0b0501d3ac15a3980580120cd5 Mon Sep 17 00:00:00 2001 From: Caleb Allen Date: Mon, 30 Mar 2026 00:10:26 -0400 Subject: [PATCH] fix: show 2 top releases by default, 4 when expanded --- .../explore-artist-details/explore-artist-details.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/explore-artist-details/explore-artist-details.ts b/frontend/src/components/explore-artist-details/explore-artist-details.ts index 5f5e9cc..75a2934 100644 --- a/frontend/src/components/explore-artist-details/explore-artist-details.ts +++ b/frontend/src/components/explore-artist-details/explore-artist-details.ts @@ -1095,13 +1095,13 @@ export class ExploreArtistDetails extends LitElement { const expanded = this.topSectionExpanded; const trackLimit = expanded ? 10 : 5; - const releaseLimit = expanded ? 8 : 4; + const releaseLimit = expanded ? 4 : 2; const tracks = this.topTracks.slice(0, trackLimit); const releases = this.topReleaseGroups.slice(0, releaseLimit); const canExpand = - this.topTracks.length > 5 || this.topReleaseGroups.length > 4; + this.topTracks.length > 5 || this.topReleaseGroups.length > 2; return html`