better show filters

This commit is contained in:
2024-04-09 20:33:59 +02:00
parent 3d31594dbc
commit 669bd0d852
9 changed files with 137 additions and 26 deletions

View File

@@ -9,7 +9,7 @@
<app-card
*ngIf="shows.length > 0"
[padding]="false"
heading="meine Veranstaltungen"
heading="Meine Veranstaltungen"
>
<app-list-item
*ngFor="let show of shows | sortBy: 'desc':'date'"
@@ -24,7 +24,7 @@
<app-card
*ngIf="shows.length > 0"
[padding]="false"
heading="veröffentlichte Veranstaltungen"
heading="Veröffentlichte Veranstaltungen"
>
<app-list-item
*ngFor="let show of shows | sortBy: 'desc':'date'; trackBy: trackBy"