Skip to content

Commit

Permalink
Merge pull request #9 from spartez/fix-for-xss-script-injection-in-gr…
Browse files Browse the repository at this point in the history
…oup-picker

Fixed XSS vulnerability in group picker
  • Loading branch information
piotrbuczekspartez authored Sep 15, 2020
2 parents 308597e + 8cc06a8 commit 17f4b36
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 17f4b36

Please sign in to comment.