Skip to content

Commit

Permalink
Fixed XSS vulnerability in group picker
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrbuczekspartez committed Sep 15, 2020
1 parent 308597e commit 8cc06a8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/GroupPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
queryGroups({term, callback}) {
this.$jira.getGroupsForPicker({query: term}).then(groupsResults => {
groupsResults.groups.map(group => group.name = group.html)
callback({results: groupsResults.groups.map(group => this.mapGroupToGroupOption(group.name))});
})
},
Expand Down

0 comments on commit 8cc06a8

Please sign in to comment.