mirror of
https://github.com/navidrome/navidrome.git
synced 2025-06-17 23:51:48 +03:00
Fix 'Play Next' icon in AlbumSongBulkActions
This commit is contained in:
parent
a817701ee8
commit
a65318a00a
@ -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…
x
Reference in New Issue
Block a user