mirror of
https://github.com/billsonnn/nitro-react.git
synced 2025-02-17 01:12:37 +01:00
Change details
This commit is contained in:
parent
ec284d5b52
commit
155665885d
@ -71,17 +71,11 @@ export const AvatarEditorModelView: FC<AvatarEditorModelViewProps> = props =>
|
||||
const category = model.categories.get(name);
|
||||
|
||||
return (
|
||||
<div key={ name }>
|
||||
<Flex center pointer className="category-item" onClick={ event => selectCategory(name) }>
|
||||
{ (isFromFootballGate && CATEGORY_FOOTBALL_GATE.includes(category.name)) &&
|
||||
<AvatarEditorIcon icon={ category.name } selected={ (activeCategory === category) } />
|
||||
}
|
||||
{ (!isFromFootballGate) &&
|
||||
<AvatarEditorIcon icon={ category.name } selected={ (activeCategory === category) } />
|
||||
}
|
||||
</Flex>
|
||||
</div>
|
||||
);
|
||||
(!isFromFootballGate || (isFromFootballGate && CATEGORY_FOOTBALL_GATE.includes(category.name))) &&
|
||||
<Flex key={ category.name } center pointer className="category-item" onClick={ event => selectCategory(name) }>
|
||||
<AvatarEditorIcon icon={ category.name } selected={ (activeCategory === category) } />
|
||||
</Flex>
|
||||
)
|
||||
}) }
|
||||
</Column>
|
||||
<Column size={ 5 } overflow="hidden">
|
||||
|
Loading…
x
Reference in New Issue
Block a user