Fix queue handle cursor and Favorites column sorting (#974)

* fix(ui): pointer cursor on the queue collapse handle

The round handle is a click-to-collapse button but showed the col-resize
cursor like the seam strip. Use a pointer on the handle; the seam keeps
col-resize and a real drag still switches the body cursor to col-resize.

* fix(favorites): make Plays, Last Played and BPM columns sortable

The header marked these columns sortable (pointer cursor) but handleSortClick
gated on a separate, narrower column set, so clicks did nothing. Both the
comparator and the header now share one SORTABLE_COLUMNS source, so the
affordance and the behaviour can't drift apart again.

* docs(changelog): queue handle cursor + favorites column sorting (#974)
This commit is contained in:
Frank Stellmacher
2026-06-04 01:36:24 +02:00
committed by GitHub
parent 0d479f3bfa
commit 3be8c367dd
4 changed files with 17 additions and 5 deletions
+4 -1
View File
@@ -27,7 +27,10 @@
border: 1px solid var(--border-subtle);
background: var(--bg-card);
color: var(--text-muted);
cursor: col-resize;
/* The round handle is primarily a click-to-collapse button; the seam strip
(.resizer) keeps col-resize, and an actual drag sets the body cursor to
col-resize via useQueueResizer. */
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;