mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-15 19:50:37 +03:00
Fix TypeError: Cannot read property 'id' of undefined
This commit is contained in:
parent
69615f1aa1
commit
bde9d5f954
@ -54,7 +54,7 @@ const AlbumDatagridRow = (props) => {
|
||||
const [, dragAlbumRef] = useDrag(
|
||||
() => ({
|
||||
type: DraggableTypes.ALBUM,
|
||||
item: { albumIds: [record.id] },
|
||||
item: { albumIds: [record?.id] },
|
||||
options: { dropEffect: 'copy' },
|
||||
}),
|
||||
[record]
|
||||
|
Loading…
x
Reference in New Issue
Block a user