diff --git a/website/client/components/hall/heroes.vue b/website/client/components/hall/heroes.vue
index 241374e90b..0545a90f09 100644
--- a/website/client/components/hall/heroes.vue
+++ b/website/client/components/hall/heroes.vue
@@ -1,7 +1,8 @@
.row.standard-page
small.muted(v-html="$t('blurbHallContributors')")
- .well(v-if='user.contributor.admin')
+ .well
+ div(v-if='user.contributor.admin')
h2 {{ $t('rewardUser') }}
.row
@@ -69,29 +70,29 @@
button.form-control.btn.btn-primary(@click='saveHero()')
| {{ $t('save') }}
- .table-responsive
- table.table.table-striped
- thead
- tr
- th {{ $t('name') }}
- th(v-if='user.contributor && user.contributor.admin') {{ $t('UUID') }}
- th {{ $t('contribLevel') }}
- th {{ $t('title') }}
- th {{ $t('contributions') }}
- tbody
- tr(v-for='(hero, index) in heroes')
- td
- span(v-if='hero.contributor && hero.contributor.admin', :popover="$t('gamemaster')", popover-trigger='mouseenter', popover-placement='right')
- a.label.label-default(:class='userLevelStyle(hero)', @click='clickMember(hero, true)')
- | {{hero.profile.name}}
- //- span(v-class='userAdminGlyphiconStyle(hero)')
- span(v-if='!hero.contributor || !hero.contributor.admin')
- a.label.label-default(v-if='hero.profile', v-class='userLevelStyle(hero)', @click='clickMember(hero, true)') {{hero.profile.name}}
- td(v-if='user.contributor.admin', @click='populateContributorInput(hero._id, index)').btn-link {{hero._id}}
- td {{hero.contributor.level}}
- td {{hero.contributor.text}}
- td
- div(v-markdown='hero.contributor.contributions', target='_blank')
+ .table-responsive
+ table.table.table-striped
+ thead
+ tr
+ th {{ $t('name') }}
+ th(v-if='user.contributor && user.contributor.admin') {{ $t('UUID') }}
+ th {{ $t('contribLevel') }}
+ th {{ $t('title') }}
+ th {{ $t('contributions') }}
+ tbody
+ tr(v-for='(hero, index) in heroes')
+ td
+ span(v-if='hero.contributor && hero.contributor.admin', :popover="$t('gamemaster')", popover-trigger='mouseenter', popover-placement='right')
+ a.label.label-default(:class='userLevelStyle(hero)', @click='clickMember(hero, true)')
+ | {{hero.profile.name}}
+ //- span(v-class='userAdminGlyphiconStyle(hero)')
+ span(v-if='!hero.contributor || !hero.contributor.admin')
+ a.label.label-default(v-if='hero.profile', v-class='userLevelStyle(hero)', @click='clickMember(hero, true)') {{hero.profile.name}}
+ td(v-if='user.contributor.admin', @click='populateContributorInput(hero._id, index)').btn-link {{hero._id}}
+ td {{hero.contributor.level}}
+ td {{hero.contributor.text}}
+ td
+ div(v-markdown='hero.contributor.contributions', target='_blank')