Fix issues when group isn't local

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2021-03-29 18:23:03 +02:00
parent 4d4ee80b8c
commit acf51a3130
2 changed files with 9 additions and 3 deletions

View File

@@ -5,7 +5,13 @@ import {
} from "@/graphql/actor";
import { FETCH_GROUP } from "@/graphql/group";
import RouteName from "@/router/name";
import { Group, IActor, IGroup, IPerson } from "@/types/actor";
import {
Group,
IActor,
IGroup,
IPerson,
usernameWithDomain,
} from "@/types/actor";
import { MemberRole } from "@/types/enums";
import { Component, Vue } from "vue-property-decorator";
@@ -34,7 +40,7 @@ import { Component, Vue } from "vue-property-decorator";
variables() {
return {
id: this.currentActor.id,
group: this.group.preferredUsername,
group: usernameWithDomain(this.group),
};
},
subscribeToMore: {