fix: dont pass the systems member list to a new group

all it needed was an empty array... sometimes i have a brain moment
This commit is contained in:
Draconizations 2022-04-27 20:46:39 +02:00
parent c3f5808c9c
commit 95f5f85a1c

View File

@ -175,7 +175,7 @@
function addGroupToList(event: any) {
let group = event.detail;
group.members = members;
group.members = [];
list.push(group);
list = list;
}