website refactor

This commit is contained in:
2026-01-16 01:00:03 +01:00
parent ce7be39155
commit a98e3e3166
286 changed files with 5522 additions and 5261 deletions

View File

@@ -30,6 +30,10 @@ export class RaceViewModel {
return '';
}
get scheduledAt(): string {
return this.date;
}
get track(): string {
return 'track' in this.dto ? this.dto.track || '' : '';
}
@@ -54,4 +58,4 @@ export class RaceViewModel {
get formattedDate(): string {
return new Date(this.date).toLocaleDateString();
}
}
}