Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit b7e6794

Browse files
author
Dushyant Bhalgami
committed
fix groups issue with direct
1 parent 7e25603 commit b7e6794

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/web/scripts/launch/main.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,9 @@ $(document).ready(function() {
416416
handleJsonResult(
417417
jsonResult,
418418
function(result) {
419-
console.log("------------")
420-
console.log(result)
419+
result = result.map(function(group) {
420+
return { name: group.name, id: group.oldId }
421+
});
421422
if (typeof jQuery_1_11_1 !== 'undefined' && jQuery_1_11_1 !== null) {
422423
result.sort(sortByname);
423424
if (result.length > 0) {

0 commit comments

Comments
 (0)