Don't show AX skills in hovercard if null
This commit is contained in:
parent
37e9187945
commit
3beeb69c59
1 changed files with 2 additions and 2 deletions
|
|
@ -229,8 +229,8 @@ const WeaponHovercard = (props: Props) => {
|
||||||
/>
|
/>
|
||||||
{props.gridWeapon.object.ax &&
|
{props.gridWeapon.object.ax &&
|
||||||
props.gridWeapon.ax &&
|
props.gridWeapon.ax &&
|
||||||
props.gridWeapon.ax[0].modifier !== undefined &&
|
props.gridWeapon.ax[0].modifier !== null &&
|
||||||
props.gridWeapon.ax[0].strength !== undefined &&
|
props.gridWeapon.ax[0].strength !== null &&
|
||||||
axSection}
|
axSection}
|
||||||
{props.gridWeapon.awakening && awakeningSection}
|
{props.gridWeapon.awakening && awakeningSection}
|
||||||
{props.gridWeapon.weapon_keys &&
|
{props.gridWeapon.weapon_keys &&
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue