feat(frontend): show drag preview for single-item drag as '1 song' badge
This commit is contained in:
parent
6d2eae9c7b
commit
837fed81e7
@ -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';
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user