Fix 'Play Next' icon in AlbumSongBulkActions
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
import React, { Fragment, useEffect } from 'react'
|
import React, { Fragment, useEffect } from 'react'
|
||||||
import { useUnselectAll } from 'react-admin'
|
import { useUnselectAll } from 'react-admin'
|
||||||
import { playNext } from '../audioplayer'
|
import { playNext } from '../audioplayer'
|
||||||
|
import { RiPlayList2Fill } from 'react-icons/ri'
|
||||||
import AddToQueueButton from '../song/AddToQueueButton'
|
import AddToQueueButton from '../song/AddToQueueButton'
|
||||||
import AddToPlaylistButton from '../song/AddToPlaylistButton'
|
import AddToPlaylistButton from '../song/AddToPlaylistButton'
|
||||||
|
|
||||||
@@ -16,6 +17,7 @@ export const AlbumSongBulkActions = (props) => {
|
|||||||
{...props}
|
{...props}
|
||||||
action={playNext}
|
action={playNext}
|
||||||
label={'resources.song.actions.playNext'}
|
label={'resources.song.actions.playNext'}
|
||||||
|
icon={<RiPlayList2Fill />}
|
||||||
/>
|
/>
|
||||||
<AddToQueueButton {...props} />
|
<AddToQueueButton {...props} />
|
||||||
<AddToPlaylistButton {...props} />
|
<AddToPlaylistButton {...props} />
|
||||||
|
|||||||
Reference in New Issue
Block a user