Fix 'Play Next' icon in AlbumSongBulkActions

This commit is contained in:
Deluan 2020-09-27 12:50:58 -04:00
parent a817701ee8
commit a65318a00a
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
import React, { Fragment, useEffect } from 'react'
import { useUnselectAll } from 'react-admin'
import { playNext } from '../audioplayer'
import { RiPlayList2Fill } from 'react-icons/ri'
import AddToQueueButton from '../song/AddToQueueButton'
import AddToPlaylistButton from '../song/AddToPlaylistButton'
@ -16,6 +17,7 @@ export const AlbumSongBulkActions = (props) => {
{...props}
action={playNext}
label={'resources.song.actions.playNext'}
icon={<RiPlayList2Fill />}
/>
<AddToQueueButton {...props} />
<AddToPlaylistButton {...props} />