[web] Remove ++ operators

This commit is contained in:
Alain Nussbaumer
2025-03-25 21:24:26 +01:00
parent e7fcf7dd80
commit 1c5425ba2a
5 changed files with 178 additions and 156 deletions

View File

@@ -125,7 +125,8 @@ export default {
const { track } = item
if (track) {
if (track.is_playable) {
track.position = ++position
position += 1
track.position = position
}
this.tracks.push(track)
}