This commit is contained in:
Jack 2022-03-24 22:15:36 +08:00 committed by GitHub
parent d80346f816
commit f2095e35c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -127,9 +127,9 @@ export function Factions(props: IProps): React.ReactElement {
</> </>
} }
> >
{Object.values(FactionNames).map((faction) => ( {Object.values(AllFaction).map((faction) => (
<MenuItem key={faction} value={faction}> <MenuItem key={faction.name} value={faction.name}>
{faction} {faction.name}
</MenuItem> </MenuItem>
))} ))}
</Select> </Select>