Fix crashing on track number

This commit is contained in:
wvffle 2022-07-17 11:00:55 +00:00 committed by Georg Krause
parent c5f7022869
commit a545333ff7
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ const { activateTrack } = usePlayOptions(props)
v-else-if="showPosition" v-else-if="showPosition"
class="track-position" class="track-position"
> >
{{ (track.position as unknown as string).padStart(2, '0') }} {{ `${track.position}`.padStart(2, '0') }}
</span> </span>
</div> </div>
<div <div