diff --git a/website/client/src/components/hall/heroes.vue b/website/client/src/components/hall/heroes.vue index 719318b8ea..41c9cfc543 100644 --- a/website/client/src/components/hall/heroes.vue +++ b/website/client/src/components/hall/heroes.vue @@ -314,6 +314,9 @@ export default { ...mapState({ user: 'user.data' }), }, async mounted () { + this.$store.dispatch('common:setTitle', { + section: this.$t('hallContributors'), + }); this.heroes = await this.$store.dispatch('hall:getHeroes'); }, methods: { diff --git a/website/client/src/components/hall/patrons.vue b/website/client/src/components/hall/patrons.vue index 534bd1ba13..efb26142b3 100644 --- a/website/client/src/components/hall/patrons.vue +++ b/website/client/src/components/hall/patrons.vue @@ -54,6 +54,9 @@ export default { ...mapState({ user: 'user.data' }), }, async mounted () { + this.$store.dispatch('common:setTitle', { + section: this.$t('hallPatrons'), + }); this.patrons = await this.$store.dispatch('hall:getPatrons', { page: 0 }); }, methods: {