Skip to content

Commit

Permalink
fix issue with updating roles
Browse files Browse the repository at this point in the history
  • Loading branch information
leonidastri committed Jan 15, 2025
1 parent 7af2133 commit b8146e3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions group_manager/static/group_manager/js/group_manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,11 @@ async function processImportedRow (row) {
catIdx = catIdx + 1
}
$('#group-list').html(html)

const activeGroupName = Yoda.storage.session.get('selected-group');
if (activeGroupName) {
Yoda.groupManager.selectGroup(activeGroupName)
}
})
}
}
Expand Down

0 comments on commit b8146e3

Please sign in to comment.