@@ -527,7 +527,7 @@
return userList
.map((i) => {
- return i.groupName + '-' + i.userName;
+ return (i.groupName || i.teamName) + '-' + i.userName;
})
.join(',');
},