Skip to content

Commit

Permalink
fix(api-github-v3): remove page limitation when searching issues
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorlxy committed Oct 7, 2019
1 parent eab4222 commit 669dd0f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/@vssue/api-github-v3/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,6 @@ export default class GithubV3 implements VssueAPI.Instance {
`is:public`,
...this.labels.map(label => `label:${label}`),
].join(' '),
'per_page': 1,
}
const { data } = await this.$http.get(`search/issues`, options)
const issue = data.items.map(normalizeIssue).find(item => item.title === issueTitle)
Expand Down

0 comments on commit 669dd0f

Please sign in to comment.