Skip to content

Commit

Permalink
fix #132 missing username key
Browse files Browse the repository at this point in the history
  • Loading branch information
frankli0324 committed Dec 17, 2021
1 parent 56aab1f commit 32f6a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythic-docker/app/templates/operations_management.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ var operations_table = new Vue({
for (let i = 0; i < operators_vue.operation_members.length; i++) {
if (operators_vue.operation_members[i]['selected']) {
data['members'].push({
"username": operators_vue.operation_members[i]['name'],
"username": operators_vue.operation_members[i]['username'],
"view_mode": operators_vue.operation_members[i]['view_mode']
});
}
Expand Down

0 comments on commit 32f6a19

Please sign in to comment.