We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b42f55 commit 3c3509eCopy full SHA for 3c3509e
components/jira/actions/search-issues-with-jql/search-issues-with-jql.mjs
@@ -26,6 +26,7 @@ export default {
26
optional: true,
27
default: 50,
28
min: 1,
29
+ max: 5000,
30
},
31
fields: {
32
type: "string",
@@ -91,7 +92,7 @@ export default {
91
92
93
methods: {
94
getMaxResultsPerPage() {
- return Math.min(this.maxResults, 500);
95
+ return Math.min(this.maxResults, 1000);
96
97
async paginate({
98
params, maxResults, ...otherArgs
0 commit comments