Skip to content

Commit

Permalink
Merge pull request #4 from ArcBees/github-issue-1
Browse files Browse the repository at this point in the history
🐛 Fetch more issues
  • Loading branch information
jasonlemay authored Feb 10, 2017
2 parents cb15b57 + 7ea2a97 commit b87a69c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/apis/JiraApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function getProject(projectId) {
}

export function getIssues(projectId) {
let searchQuery = "/search?jql=project=" + projectId;
let searchQuery = "/search?jql=project=" + projectId + "&maxResults=1000";
return Http.get(StorageService.getInstanceURL() + URL + searchQuery, Http.buildOptions()).then(response => response.json());
}

Expand Down

0 comments on commit b87a69c

Please sign in to comment.