bjira 0.0.15 → 0.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/query.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bjira",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "A simple jira CLI tool",
5
5
  "main": "src/index.js",
6
6
  "author": {
package/src/query.js CHANGED
@@ -64,7 +64,7 @@ class Query extends Command {
64
64
  while (issues.length < (expectedResult === undefined ? issues.length + 1 : expectedResult)) {
65
65
  const result = await jira.spin('Running query...',
66
66
  jira.api.searchJira(query, {
67
- startAt: issues.lengh,
67
+ startAt: issues.length,
68
68
  maxResults: expectedResult - issues.length
69
69
  }));
70
70