Oops, fix species name in zones tooltip
Oh right, this didn't show up in testing bc I only have a few models in the local db, but yeah I messed this up a bit!!
This commit is contained in:
parent
f56e1ad426
commit
aae5c767bb
2 changed files with 2 additions and 2 deletions
|
@ -641,7 +641,7 @@ function ItemZonesInfoListItem({ zoneLabel, bodies, showBodyInfo }) {
|
||||||
// "Acara" in either case! (We are at least gonna be defensive here
|
// "Acara" in either case! (We are at least gonna be defensive here
|
||||||
// and remove duplicates, though, in case both the Blue Acara and
|
// and remove duplicates, though, in case both the Blue Acara and
|
||||||
// Mutant Acara body end up in the same list.)
|
// Mutant Acara body end up in the same list.)
|
||||||
const speciesNames = new Set(bodies.map((b) => b.species.name));
|
const speciesNames = new Set(bodies.map((b) => b.species.humanName));
|
||||||
const speciesListString = [...speciesNames].sort().join(", ");
|
const speciesListString = [...speciesNames].sort().join(", ");
|
||||||
|
|
||||||
content = (
|
content = (
|
||||||
|
|
|
@ -51,7 +51,7 @@ function normalizeBody(body) {
|
||||||
species: {
|
species: {
|
||||||
id: String(body.species.id),
|
id: String(body.species.id),
|
||||||
name: body.species.name,
|
name: body.species.name,
|
||||||
humanName: body.species.humanName,
|
humanName: body.species.human_name,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue