Skip to content

Commit

Permalink
change to const
Browse files Browse the repository at this point in the history
  • Loading branch information
octavioamu committed Jul 17, 2019
1 parent cf45999 commit bcee552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/assets/v2/js/pages/bounty_share.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $('.modal-link').click(function(e) {
const sendInvites = (users) => {
let usersId = [];
let msg = $('#shareText').val();
let bountyId = document.result.pk;
const bountyId = document.result.pk;

$.each(users, function(index, elem) {
usersId.push(elem.id);
Expand Down

0 comments on commit bcee552

Please sign in to comment.