From 1c7c713b32c1d42ef82da390690dca113b83d411 Mon Sep 17 00:00:00 2001 From: Julien Maille Date: Sun, 4 Jan 2026 21:38:02 +0100 Subject: [PATCH] UI: replace h3 with h4 in card titles --- js/ui.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/js/ui.js b/js/ui.js index 35999ee..7de9037 100644 --- a/js/ui.js +++ b/js/ui.js @@ -201,7 +201,7 @@ export class UIRenderer { ${SVG_PLAY} -

${playlist.title}

+

${playlist.title}

${playlist.numberOfTracks || 0} tracks

`; @@ -222,7 +222,7 @@ export class UIRenderer { ${SVG_PLAY} -

${mix.title}

+

${mix.title}

${description}

`; @@ -289,7 +289,7 @@ export class UIRenderer { ${SVG_PLAY} -

${playlist.name}

+

${playlist.name}

${playlist.tracks ? playlist.tracks.length : (playlist.numberOfTracks || 0)} tracks

`; @@ -323,7 +323,7 @@ export class UIRenderer { ${SVG_PLAY} -

${album.title} ${explicitBadge}

+

${album.title} ${explicitBadge}

${album.artist?.name ?? ''}

${yearDisplay}${typeLabel}

@@ -339,7 +339,7 @@ export class UIRenderer { ${this.createHeartIcon(false)} -

${artist.name}

+

${artist.name}

`; }