web: people: fix group fetching

This commit is contained in:
Vladislav Makhov 2021-02-26 15:53:06 +03:00
parent a2ace1a012
commit ae45d875f6

View File

@ -16,7 +16,7 @@ class GroupsStore {
}
getGroupList = async () => {
const res = await api.groups.getGroupList();
const res = await api.groups.getGroupListFull();
this.groups = res;
};