Oops, fix bug in pet appearance support!
Right, oops, this logic was saying "Restricts: None" whenever the appearance restricted _zero or one_ zones, lol 😅
This commit is contained in:
parent
b0672d589f
commit
c8d15fa812
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ function PosePickerSupport({
|
|||
</MetadataValue>
|
||||
<MetadataLabel>Restricts:</MetadataLabel>
|
||||
<MetadataValue maxHeight="64" overflowY="auto">
|
||||
{currentPetAppearance.restrictedZones.length > 1 ? (
|
||||
{currentPetAppearance.restrictedZones.length > 0 ? (
|
||||
<UnorderedList>
|
||||
{currentPetAppearance.restrictedZones
|
||||
.map((zone) => `${zone.label} (${zone.id})`)
|
||||
|
|
Loading…
Reference in a new issue