Add conditional rendering to token status and label
This commit is contained in:
parent
78dac55d7a
commit
e352cadaea
@ -248,16 +248,20 @@ function MapToken({
|
|||||||
hitFunc={() => {}}
|
hitFunc={() => {}}
|
||||||
/>
|
/>
|
||||||
<Group offsetX={tokenWidth / 2} offsetY={tokenHeight / 2}>
|
<Group offsetX={tokenWidth / 2} offsetY={tokenHeight / 2}>
|
||||||
<TokenStatus
|
{tokenState.statuses?.length > 0 ? (
|
||||||
tokenState={tokenState}
|
<TokenStatus
|
||||||
width={tokenWidth}
|
tokenState={tokenState}
|
||||||
height={tokenHeight}
|
width={tokenWidth}
|
||||||
/>
|
height={tokenHeight}
|
||||||
<TokenLabel
|
/>
|
||||||
tokenState={tokenState}
|
) : null}
|
||||||
width={tokenWidth}
|
{tokenState.label ? (
|
||||||
height={tokenHeight}
|
<TokenLabel
|
||||||
/>
|
tokenState={tokenState}
|
||||||
|
width={tokenWidth}
|
||||||
|
height={tokenHeight}
|
||||||
|
/>
|
||||||
|
) : null}
|
||||||
</Group>
|
</Group>
|
||||||
</animated.Group>
|
</animated.Group>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user