mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 12:02:13 +00:00
Fix Mana rounding on the stats page. Fixes #4820
This commit is contained in:
parent
1b53aeaee8
commit
25427fcf4c
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ table.table.table-striped
|
|||
tr(ng-if='profile.stats.lvl >= 10 && !profile.preferences.disableClasses')
|
||||
td
|
||||
strong=env.t('mana')
|
||||
| : {{profile.stats.mp | number:0}} / {{profile._statsComputed.maxMP}}
|
||||
| : {{Math.floor(profile.stats.mp)}} / {{profile._statsComputed.maxMP}}
|
||||
tr
|
||||
td
|
||||
strong=env.t('gold')
|
||||
|
|
|
|||
Loading…
Reference in a new issue