mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 01:29:21 +00:00
Fix matters of colons: missing space after colon in stats, colon getting placed after tags in task tag list.
This commit is contained in:
parent
6eed685004
commit
983df5c97c
2 changed files with 7 additions and 7 deletions
|
|
@ -26,11 +26,11 @@ p
|
|||
| : {{profile.stats.exp | number:0}} / {{tnl(profile.stats.lvl)}}
|
||||
p
|
||||
strong Strength
|
||||
| :
|
||||
| :
|
||||
span(popover-trigger='mouseenter', popover='(Level-1)/2') {{userStr(profile.stats.lvl)}}
|
||||
p
|
||||
strong Defense
|
||||
| :
|
||||
| :
|
||||
span(popover-trigger='mouseenter', popover='(Level-1)/2') {{userDef(profile.stats.lvl)}}
|
||||
p
|
||||
strong Pets Found
|
||||
|
|
@ -38,10 +38,10 @@ p
|
|||
hr
|
||||
p
|
||||
strong Total Experience Boost
|
||||
| :
|
||||
| :
|
||||
span(popover-trigger='mouseenter', popover='Attack + Strength') {{totalStr(profile.stats.lvl, profile.items.weapon)}} %
|
||||
|
||||
p
|
||||
strong Total Damage Reduction
|
||||
| :
|
||||
| :
|
||||
span(popover-trigger='mouseenter', popover='Defense + Protection') {{totalDef(profile.stats.lvl, profile.items.armor, profile.items.head, profile.items.shield)}} %
|
||||
|
|
@ -140,9 +140,9 @@ li(bindonce='list', ng-repeat='task in obj[list.type+"s"]', class='task {{taskCl
|
|||
|
||||
fieldset.option-group(ng-if='!$state.includes("options.social.challenges")')
|
||||
legend.option-title Tags
|
||||
label.checkbox(ng-repeat='tag in user.tags')
|
||||
input(type='checkbox', ng-model='task.tags[tag.id]')
|
||||
| {{tag.name}}
|
||||
label.checkbox(ng-repeat='tag in user.tags')
|
||||
input(type='checkbox', ng-model='task.tags[tag.id]')
|
||||
| {{tag.name}}
|
||||
|
||||
// Advanced Options
|
||||
span(bo-if='task.type!="reward"')
|
||||
|
|
|
|||
Loading…
Reference in a new issue