mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +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(
|
const onAddToPlaylist = useCallback(
|
||||||
(pls) => {
|
(pls) => {
|
||||||
if (pls.artID === playlistId) {
|
if (pls.id === playlistId) {
|
||||||
refetch()
|
refetch()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -224,7 +224,7 @@ const SanitizedPlaylistSongs = (props) => {
|
||||||
<>
|
<>
|
||||||
{loaded && (
|
{loaded && (
|
||||||
<PlaylistSongs
|
<PlaylistSongs
|
||||||
playlistId={props.artID}
|
playlistId={props.id}
|
||||||
actions={props.actions}
|
actions={props.actions}
|
||||||
pagination={props.pagination}
|
pagination={props.pagination}
|
||||||
{...rest}
|
{...rest}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue