mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-09 05:09:39 +00:00
- Add Chart Preview - Add Drum Type dropdown when the "drums" instrument is selected - Add Min/Max Year to advanced search - Add Track Hash to advanced search - Add "Download Video Backgrounds" setting - Updated and improved detected chart issues
14 lines
748 B
HTML
14 lines
748 B
HTML
<td>
|
|
<input type="checkbox" class="checkbox" (click)="$event.stopPropagation()" (focus)="rowFocused.emit()" [(ngModel)]="selected" />
|
|
</td>
|
|
<td>
|
|
<span *ngIf="song.length > 1" class="rounded-sm bg-accent text-accent-content px-1 mr-1 font-bold">{{ song.length }}</span> {{ song[0].name }}
|
|
</td>
|
|
<td *ngIf="hasColumn('artist')">{{ song[0].artist }}</td>
|
|
<td *ngIf="hasColumn('album')">{{ song[0].album || 'Various' }}</td>
|
|
<td *ngIf="hasColumn('genre')">{{ song[0].genre || 'Various' }}</td>
|
|
<td *ngIf="hasColumn('year')">{{ song[0].year || 'Various' }}</td>
|
|
<td *ngIf="hasColumn('charter')">{{ song[0].charter || 'Various' }}</td>
|
|
<td *ngIf="hasColumn('length')">{{ songLength }}</td>
|
|
<td *ngIf="hasColumn('difficulty')">{{ songDifficulty }}</td>
|