Skip to content

Commit 3c3509e

Browse files
committed
Page adjustments
1 parent 3b42f55 commit 3c3509e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/jira/actions/search-issues-with-jql/search-issues-with-jql.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export default {
2626
optional: true,
2727
default: 50,
2828
min: 1,
29+
max: 5000,
2930
},
3031
fields: {
3132
type: "string",
@@ -91,7 +92,7 @@ export default {
9192
},
9293
methods: {
9394
getMaxResultsPerPage() {
94-
return Math.min(this.maxResults, 500);
95+
return Math.min(this.maxResults, 1000);
9596
},
9697
async paginate({
9798
params, maxResults, ...otherArgs

0 commit comments

Comments
 (0)