teams filtered and sorted

This commit is contained in:
memeriau
2022-03-03 23:50:56 +01:00
parent c04b62a657
commit b93da3e119
7 changed files with 68 additions and 4 deletions

View File

@@ -14,6 +14,10 @@ export class Team {
during = ""
after = ""
status = ""
order = 0
}
export const translationTeam: { [k in keyof Team]: string } = {
@@ -25,6 +29,8 @@ export const translationTeam: { [k in keyof Team]: string } = {
before: "avant",
during: "pendant",
after: "après",
status: "statut",
order: "ordre",
}
export const elementName = "Team"