feat(frontend): show drag preview for single-item drag as '1 song' badge

This commit is contained in:
Geert Rademakes 2025-08-13 16:23:30 +02:00
parent 6d2eae9c7b
commit 837fed81e7

View File

@ -318,7 +318,7 @@ export const PaginatedSongList: React.FC<PaginatedSongListProps> = memo(({
// Create a custom drag image with count badge when dragging multiple // Create a custom drag image with count badge when dragging multiple
try { try {
const count = ids.length; const count = ids.length;
if (count > 1) { if (count >= 1) {
// Build a lightweight preview element // Build a lightweight preview element
const preview = document.createElement('div'); const preview = document.createElement('div');
preview.style.position = 'fixed'; preview.style.position = 'fixed';