mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-03 08:21:07 +00:00
Make number format consistent between current exp and exp TNL (fix #1827)
This commit is contained in:
parent
983df5c97c
commit
0d6f3dd5e6
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@
|
|||
.bar(style='width: {{percent(user.stats.exp,tnl(user.stats.lvl))}}%;')
|
||||
span.meter-text
|
||||
i.icon-star
|
||||
| {{user.stats.exp | number:0}} / {{tnl(user.stats.lvl)}}
|
||||
| {{user.stats.exp | number:0}} / {{tnl(user.stats.lvl) | number:0}}
|
||||
// FIXME doesn't look great here, but the "Experience" CSS title rollover covers it where it was before
|
||||
span(ng-show='user.history.exp')
|
||||
a(ng-click='toggleChart("exp")', tooltip='Progress')
|
||||
|
|
|
|||
Loading…
Reference in a new issue