fix: ordering songs in show

This commit is contained in:
2020-03-22 00:08:09 +01:00
committed by smuddy
parent 8149e56dad
commit 597f6ac187
3 changed files with 6 additions and 7 deletions

View File

@@ -64,9 +64,8 @@ export class ShowComponent implements OnInit {
event.source.value = null;
}
public getSong(songs: Song[], songId: string): Song {
if (!songs) return null;
const filtered = songs.filter(_ => _.id === songId);
public getSong(songId: string): Song {
const filtered = this.songs.filter(_ => _.id === songId);
return filtered.length > 0 ? filtered[0] : null;
}
}