We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b853bb commit f7ae33eCopy full SHA for f7ae33e
1 file changed
src/static/riot/competitions/editor/_participation.tag
@@ -462,6 +462,13 @@
462
}).then(data => {
463
if (data && data.status === 'ok' && data.group) {
464
const g = data.group
465
+ if (!self.editing_group) {
466
+ const selectedUsers = (self.available_users || [])
467
+ .filter(u => user_ids.includes(String(u.id)))
468
+ .map(u => u.username)
469
+ g.members = selectedUsers
470
+ }
471
+
472
let found = false
473
for (let i = 0; i < self.available_groups.length; i++) {
474
if (self.available_groups[i].id === g.id) {
0 commit comments