From 81854c1ffb1422095abbfa7f9fc19465a8b28656 Mon Sep 17 00:00:00 2001 From: Julien Maille Date: Sun, 18 Jan 2026 19:06:33 +0100 Subject: [PATCH] UI: add menu icon to tracklist header --- js/ui.js | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/js/ui.js b/js/ui.js index ce61870..001f293 100644 --- a/js/ui.js +++ b/js/ui.js @@ -1233,7 +1233,7 @@ export class UIRenderer { # Title Duration - + ${SVG_MENU} ${this.createSkeletonTracks(10, false)} `; @@ -1287,7 +1287,7 @@ export class UIRenderer { # Title Duration - + ${SVG_MENU} `; @@ -1461,12 +1461,12 @@ export class UIRenderer { const tracklistContainer = document.getElementById('playlist-detail-tracklist'); if (tracklistContainer && updatedPlaylist.tracks) { tracklistContainer.innerHTML = ` -
- # - Title - Duration - -
`; +
+ # + Title + Duration + ${SVG_MENU} +
`; this.renderListWithTracks(tracklistContainer, updatedPlaylist.tracks, true); if (document.querySelector('.remove-from-playlist-btn')) { @@ -1536,7 +1536,7 @@ export class UIRenderer { # Title Duration - + ${SVG_MENU} ${this.createSkeletonTracks(10, true)} `; @@ -1588,7 +1588,7 @@ export class UIRenderer { # Title Duration - + ${SVG_MENU} `; @@ -1687,7 +1687,7 @@ export class UIRenderer { # Title Duration - + ${SVG_MENU} `; @@ -1750,7 +1750,7 @@ export class UIRenderer { # Title Duration - + ${SVG_MENU} ${this.createSkeletonTracks(10, true)} `; @@ -1791,7 +1791,7 @@ export class UIRenderer { # Title Duration - + ${SVG_MENU} `;