Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
octavioamu committed May 28, 2019
1 parent 5385d53 commit 2062d0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions app/assets/v2/js/pages/new_bounty.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ $('.select2-tag__choice').on('click', function() {
});

const getSuggestions = () => {
console.log(params)
let queryParams = {};

queryParams.keywords = $('#keywords').val();
queryParams.invite = params.get('invite') || '';

Expand Down Expand Up @@ -81,7 +81,7 @@ const getSuggestions = () => {
children.text = children.fulfiller_github_username || children.user__profile__handle || children.handle;
children.id = generalIndex;
if (obj.text == 'Invites') {
children.selected= true;
children.selected = true;
$('#reserve-section').collapse('show');
}
generalIndex++;
Expand Down Expand Up @@ -858,7 +858,6 @@ const populateBountyTotal = () => {

let isPrivateRepo = false;

console.log(params)
const toggleCtaPlan = (value) => {
if (value === 'private') {

Expand Down
2 changes: 1 addition & 1 deletion app/assets/v2/js/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Vue.mixin({
let getBounties = fetchData(apiUrlBounties, 'GET');

$.when(getBounties).then((response) => {
vm.isFunder = response.is_funder
vm.isFunder = response.is_funder;
vm.funderBounties = response.data;
});

Expand Down

0 comments on commit 2062d0f

Please sign in to comment.