Replaced versionCount with chartCount

This commit is contained in:
Geomitron
2020-07-12 21:57:54 -04:00
parent 5498393919
commit 790a5fc0b3
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
<input type="checkbox"> <input type="checkbox">
</div> </div>
</td> </td>
<td><span id="versionCount" *ngIf="result.versionCount > 1">{{result.versionCount}}</span>{{result.name}}</td> <td><span id="chartCount" *ngIf="result.chartCount > 1">{{result.chartCount}}</span>{{result.name}}</td>
<td>{{result.artist}}</td> <td>{{result.artist}}</td>
<td>{{result.album || 'Various'}}</td> <td>{{result.album || 'Various'}}</td>
<td>{{result.genre}}</td> <td>{{result.genre}}</td>

View File

@@ -2,7 +2,7 @@
display: block; display: block;
} }
#versionCount { #chartCount {
background-color: lightgray; background-color: lightgray;
border-radius: 3px; border-radius: 3px;
padding: 1px 4px 2px 4px; padding: 1px 4px 2px 4px;

View File

@@ -20,7 +20,7 @@ export enum SearchType {
*/ */
export interface SongResult { export interface SongResult {
id: number id: number
versionCount: number chartCount: number
name: string name: string
artist: string artist: string
album: string album: string