Add "Upload Date" column

This commit is contained in:
Geomitron
2025-02-08 12:19:24 -06:00
parent deaa7d22be
commit c9166966c1
7 changed files with 18 additions and 3 deletions

View File

@@ -11,3 +11,4 @@
<td *ngIf="hasColumn('charter')">{{ song[0].charter || 'Various' }}</td>
<td *ngIf="hasColumn('length')">{{ songLength }}</td>
<td *ngIf="hasColumn('difficulty')">{{ songDifficulty }}</td>
<td *ngIf="hasColumn('uploaded')" class="text-nowrap">{{ uploaded | date: 'yyyy-MM-dd' }}</td>

View File

@@ -54,6 +54,10 @@ export class ResultTableRowComponent implements OnInit {
}
}
get uploaded() {
return this.song[0].modifiedTime
}
get selected() {
return this.selectionService.selections[this.groupId] ?? false
}