mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Fix track number style
This commit is contained in:
parent
733f3a4634
commit
438e264d32
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
class="song-item"
|
||||
:class="{ selected: selected, playing: song.playbackState === 'playing' || song.playbackState === 'paused' }"
|
||||
>
|
||||
<td class="track-number">{{ song.track }}</td>
|
||||
<td class="track-number">{{ song.track || '' }}</td>
|
||||
<td class="title">{{ song.title }}</td>
|
||||
<td class="artist">{{ song.album.artist.name }}</td>
|
||||
<td class="album">{{ song.album.name }}</td>
|
||||
|
|
|
@ -557,7 +557,7 @@
|
|||
padding: 0;
|
||||
vertical-align: bottom;
|
||||
|
||||
&.album, &.time {
|
||||
&.album, &.time, &.track-number {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue