diff --git a/Kemkas.Web/frontend/src/first-edition/components/CharacterListItem.tsx b/Kemkas.Web/frontend/src/first-edition/components/CharacterListItem.tsx
index d74cee9..2af786a 100644
--- a/Kemkas.Web/frontend/src/first-edition/components/CharacterListItem.tsx
+++ b/Kemkas.Web/frontend/src/first-edition/components/CharacterListItem.tsx
@@ -8,6 +8,7 @@ export interface CharacterListItemDto {
szint: number,
faj: Faj,
osztaly: Osztaly,
+ edition: "1e" | "2e"
}
function CharacterListItem(props: {
@@ -15,7 +16,7 @@ function CharacterListItem(props: {
}) {
const {character:c} = props
return <>
- | {c.name} |
+ {c.name} |
{c.szint}. szintű |
{FajLabel(c.faj)} |
{OsztalyLabel(c.osztaly)} |