Skip to content

Commit

Permalink
sets results limit to 10 not 5
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed Jul 13, 2019
1 parent de03a02 commit a146a27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/v2/js/pages/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ var local_storage_keys = JSON.parse(JSON.stringify(filters));
local_storage_keys.push('keywords');
local_storage_keys.push('org');

results_limit = 5;
results_limit = 10;

if (document.hackathon) {
results_limit = 5;
results_limit = 10;
}

var localStorage;
Expand Down

0 comments on commit a146a27

Please sign in to comment.