Fix strange behaviour on Track list

This commit is contained in:
nemunaire 2022-10-15 13:39:30 +02:00
parent 14b95876c5
commit 8e432c9b6b
1 changed files with 3 additions and 1 deletions

View File

@ -73,7 +73,9 @@
if (edit) {
goto('musiks/tracks/' + track.id);
} else {
track = track.toggleEnable()
track.toggleEnable().then((t) => {
refresh_tracks();
})
}
}}
>