Fix 'Play Next' icon in AlbumSongBulkActions
This commit is contained in:
parent
a817701ee8
commit
a65318a00a
1 changed files with 2 additions and 0 deletions
|
|
@ -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} />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue