fix(profile): correct stat display for class gear

This commit is contained in:
Kalista Payne
2026-02-20 13:19:56 -06:00
parent 9f97a09b8c
commit 4ea8636f03

View File

@@ -43,7 +43,7 @@
<strong>{{ $t('equipment') }}:</strong>
<span :class="{ 'positive-stat': statsComputed.gearBonus[stat] !== 0 }">
{{ statsComputed.gearBonus[stat] !== 0 ? '+' : '' }}{{
statsComputed.gearBonus[stat]
statsComputed.gearBonus[stat] + statsComputed.classBonus[stat]
}}
</span>
</li>