Skip to content

Commit

Permalink
Merge pull request #133 from frankli0324/master
Browse files Browse the repository at this point in the history
fix #132 missing username key
  • Loading branch information
its-a-feature authored Dec 18, 2021
2 parents a43e704 + 32f6a19 commit 637cb30
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 637cb30

Please sign in to comment.