Fix div for last played song

Little commit - to squash?
This commit is contained in:
2018-02-10 00:16:50 +01:00
parent f0fce02e06
commit 6e323c39c7

View File

@@ -98,25 +98,27 @@
</table>
</div>
<div class="col-md-12">
<h3>Top Played Songs</h3>
<table class="table table-striped">
<thead>
<table class="table table-striped">
<thead>
<tr>
<th>Track Name</th>
<th>Artist</th>
<th>Album</th>
<th>Play Count</th>
</tr>
</thead>
<tbody>
</thead>
<tbody>
<tr *ngFor="let song of mostPlayedSongs">
<td><b>{{song.Name}}</b></td>
<td><a [routerLink]="['/artist', song.Artist]">{{song.Artist}}</a></td>
<td><a [routerLink]="['/album', song.Album]">{{song.Album}}</a></td>
<td>{{song['Play Count']}}</td>
</tr>
</tbody>
</table>
</tbody>
</table>
</div>
<div class="col-md-6">
<h3>Top Genres</h3>