mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
Make song's fmtLength one-time binding
This commit is contained in:
parent
5729e69a7a
commit
b2d0bce09b
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
|||
<td class="title">{{ song.title }}</td>
|
||||
<td class="artist">{{ song.album.artist.name }}</td>
|
||||
<td class="album">{{ song.album.name }}</td>
|
||||
<td class="time">{{ song.fmtLength }}</td>
|
||||
<td class="time">{{* song.fmtLength }}</td>
|
||||
<td class="play" @click.stop="doPlayback">
|
||||
<i class="fa fa-pause-circle" v-show="song.playbackState === 'playing'"></i>
|
||||
<i class="fa fa-play-circle" v-else></i>
|
||||
|
|
Loading…
Reference in a new issue