fix (fe playlist): fixed tracks error on new playlist

This commit is contained in:
Marco Cavalli 2025-06-30 14:57:31 +02:00
parent 8e3103b9db
commit f1b467e4f3

View file

@ -70,7 +70,9 @@ const rehydratateTracks = () => {
} }
onMounted(() => { onMounted(() => {
rehydratateTracks() if (typeof props.tracks === "object") {
rehydratateTracks();
}
}) })
const checkMove = (e) => { const checkMove = (e) => {