Fix div for last played song
Little commit - to squash?
This commit is contained in:
@@ -98,25 +98,27 @@
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-12">
|
||||||
<h3>Top Played Songs</h3>
|
<h3>Top Played Songs</h3>
|
||||||
<table class="table table-striped">
|
<table class="table table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Track Name</th>
|
<th>Track Name</th>
|
||||||
<th>Artist</th>
|
<th>Artist</th>
|
||||||
<th>Album</th>
|
<th>Album</th>
|
||||||
<th>Play Count</th>
|
<th>Play Count</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let song of mostPlayedSongs">
|
<tr *ngFor="let song of mostPlayedSongs">
|
||||||
<td><b>{{song.Name}}</b></td>
|
<td><b>{{song.Name}}</b></td>
|
||||||
<td><a [routerLink]="['/artist', song.Artist]">{{song.Artist}}</a></td>
|
<td><a [routerLink]="['/artist', song.Artist]">{{song.Artist}}</a></td>
|
||||||
<td><a [routerLink]="['/album', song.Album]">{{song.Album}}</a></td>
|
<td><a [routerLink]="['/album', song.Album]">{{song.Album}}</a></td>
|
||||||
<td>{{song['Play Count']}}</td>
|
<td>{{song['Play Count']}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<h3>Top Genres</h3>
|
<h3>Top Genres</h3>
|
||||||
|
|||||||
Reference in New Issue
Block a user