Skip to content

Commit

Permalink
Merge pull request #490 from dmjohnsson23/dmjohnsson23-patch-1
Browse files Browse the repository at this point in the history
Fix username bug on groups.php
  • Loading branch information
craigk5n authored Jul 31, 2024
2 parents 3ab2e0f + f810416 commit e43f606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion groups.php
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ function edit_group(id) {
$('#editName').prop("value", group['name']);
for (var i = 0; i < cnt; i++) {
console.log('Selected user: ' + selectedUsers[i]);
$('#editUsers option[value=' + selectedUsers[i] + ']').attr('selected',true).change();
$('#editUsers option[value="' + selectedUsers[i] + '"]').attr('selected',true).change();
}

}
Expand Down

0 comments on commit e43f606

Please sign in to comment.