Add SongContextMenu to Album Songs

This commit is contained in:
Deluan
2020-05-17 20:57:38 -04:00
parent 308163c2e0
commit 1afbbbf189
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -1,6 +1,7 @@
import React, { Fragment, useEffect } from 'react'
import { useUnselectAll } from 'react-admin'
import AddToQueueButton from '../song/AddToQueueButton'
import AddToPlaylistButton from '../song/AddToPlaylistButton'
export const AlbumSongBulkActions = (props) => {
const unselectAll = useUnselectAll()
@@ -11,6 +12,7 @@ export const AlbumSongBulkActions = (props) => {
return (
<Fragment>
<AddToQueueButton {...props} />
<AddToPlaylistButton {...props} />
</Fragment>
)
}