mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-09 05:09:39 +00:00
Fixed album display for songs on multiple albums
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
<div id="textPanel" class="content">
|
||||
<span class="header">{{selectedVersion.avTagName}}</span>
|
||||
<div class="description">
|
||||
<div *ngIf="songResult.album == null"><b>Album:</b> {{selectedVersion.album}}</div>
|
||||
<div><b>{{charterPlural}}</b> {{selectedVersion.charters}}</div>
|
||||
<div *ngIf="selectedVersion.tags"><b>Tags:</b> {{selectedVersion.tags}}</div>
|
||||
<div><b>Audio Length:</b> {{songLength}}</div>
|
||||
|
||||
@@ -15,7 +15,7 @@ import { DomSanitizer, SafeUrl } from '@angular/platform-browser'
|
||||
})
|
||||
export class ChartSidebarComponent implements OnInit {
|
||||
|
||||
private songResult: SongResult
|
||||
songResult: SongResult
|
||||
selectedVersion: VersionResult
|
||||
charts: VersionResult[][]
|
||||
|
||||
|
||||
@@ -5,5 +5,5 @@
|
||||
</td>
|
||||
<td><span id="versionCount" *ngIf="result.versionCount > 1">{{result.versionCount}}</span>{{result.name}}</td>
|
||||
<td>{{result.artist}}</td>
|
||||
<td>{{result.album}}</td>
|
||||
<td>{{result.album || 'Various'}}</td>
|
||||
<td>{{result.genre}}</td>
|
||||
@@ -33,6 +33,8 @@ export interface VersionResult {
|
||||
songDataIncorrect: boolean
|
||||
year: string
|
||||
chartMetadata: ChartMetadata
|
||||
isRemoved: boolean
|
||||
album: string
|
||||
}
|
||||
|
||||
export interface DriveChart {
|
||||
|
||||
Reference in New Issue
Block a user