From c02fd261e419b4c0e924deb39b22bca8b5695e7f Mon Sep 17 00:00:00 2001 From: peterino2 Date: Sat, 7 Feb 2026 00:44:12 -0800 Subject: [PATCH] saving --- public/trackContainer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/trackContainer.js b/public/trackContainer.js index 5947c79..40ddb24 100644 --- a/public/trackContainer.js +++ b/public/trackContainer.js @@ -107,8 +107,8 @@ const isCached = M.cachedTracks.has(trackId); const isActive = type === 'queue' && index === M.currentIndex; - // Library tracks are always draggable, queue tracks need edit permission - const isDraggable = type === 'library' || (type === 'queue' && canEditQueue) || (type === 'playlist' && isPlaylistOwner); + // Library/playlist always draggable (read access), queue needs edit permission + const isDraggable = type === 'library' || type === 'playlist' || (type === 'queue' && canEditQueue); const div = M.trackComponent.render(track, { view: type,