mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix playlist delete and reorder actions
This commit is contained in:
parent
bfaf4a3388
commit
9b2dd1bb06
1 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ const PlaylistSongs = ({ playlistId, readOnly, actions, ...props }) => {
|
|||
|
||||
const onAddToPlaylist = useCallback(
|
||||
(pls) => {
|
||||
if (pls.artID === playlistId) {
|
||||
if (pls.id === playlistId) {
|
||||
refetch()
|
||||
}
|
||||
},
|
||||
|
@ -224,7 +224,7 @@ const SanitizedPlaylistSongs = (props) => {
|
|||
<>
|
||||
{loaded && (
|
||||
<PlaylistSongs
|
||||
playlistId={props.artID}
|
||||
playlistId={props.id}
|
||||
actions={props.actions}
|
||||
pagination={props.pagination}
|
||||
{...rest}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue