make guilds not display group plans as title section (#12761)

* make guilds not display group plans as title section

* fix for parties as well

* task board for group plans now says group plans

* fix party title

Co-authored-by: Matteo Pagliazzi <matteopagliazzi@gmail.com>
This commit is contained in:
Shadow
2020-11-14 12:35:09 -06:00
committed by GitHub
parent cb96ff84d1
commit 8c98b7127e
2 changed files with 8 additions and 6 deletions

View File

@@ -226,7 +226,7 @@ export default {
});
this.$store.dispatch('common:setTitle', {
subSection: this.group.name,
section: this.$t('group'),
section: this.$route.path.startsWith('/group-plans') ? this.$t('groupPlans') : this.$t('group'),
});
const members = await this.$store.dispatch('members:getGroupMembers', { groupId: this.searchId });
this.group.members = members;