mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-07-07 18:45:09 +00:00
Replaced versionCount with chartCount
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<input type="checkbox">
|
||||
</div>
|
||||
</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.album || 'Various'}}</td>
|
||||
<td>{{result.genre}}</td>
|
||||
@@ -2,7 +2,7 @@
|
||||
display: block;
|
||||
}
|
||||
|
||||
#versionCount {
|
||||
#chartCount {
|
||||
background-color: lightgray;
|
||||
border-radius: 3px;
|
||||
padding: 1px 4px 2px 4px;
|
||||
|
||||
@@ -20,7 +20,7 @@ export enum SearchType {
|
||||
*/
|
||||
export interface SongResult {
|
||||
id: number
|
||||
versionCount: number
|
||||
chartCount: number
|
||||
name: string
|
||||
artist: string
|
||||
album: string
|
||||
|
||||
Reference in New Issue
Block a user