Sidebar chart display

This commit is contained in:
Geomitron
2020-02-07 21:40:35 -05:00
parent a682fa52c6
commit 749a132b4a
15 changed files with 200 additions and 33 deletions

View File

@@ -17,16 +17,10 @@
</tr>
</thead>
<tbody>
<tr *ngFor="let result of results">
<td>
<div class="ui checkbox">
<input type="checkbox">
</div>
</td>
<td>{{result.name}}</td>
<td>{{result.artist}}</td>
<td>{{result.album}}</td>
<td>{{result.genre}}</td>
</tr>
<tr
app-result-table-row
*ngFor="let result of results"
(click)="onRowClicked(result)"
[result]="result"></tr>
</tbody>
</table>