@if (songs$ | async; as songs) {
@for (song of songs; track trackBy($index, song)) {
{{ song.number }}
{{ song.title }} @if (song.hasChordValidationIssues) { * }
@if (song.status === 'draft') {
} @if (song.status === 'set') {
} @if (song.status === 'final') {
}
@if (song.legalType === 'open') {
}
{{ song.key }}
}
}