Skip to content

Commit

Permalink
fix(jira): fix typo in IN_REVIEW status value
Browse files Browse the repository at this point in the history
  • Loading branch information
tagoro9 committed Feb 23, 2017
1 parent 7ac254b commit 83d70af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/issue-tracker/jira/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'd
var status = exports.status = {
BACKLOG: 'BACKLOG',
IN_PROGRESS: 'IN_PROGRESS',
IN_REVIEW: 'IN_PREVIEW',
IN_REVIEW: 'IN_REVIEW',
SELECTED_FOR_DEVELOPMENT: 'SELECTED_FOR_DEVELOPMENT'
};

Expand Down
2 changes: 1 addition & 1 deletion src/issue-tracker/jira/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import reporter from '../../reporter';
export const status = {
BACKLOG: 'BACKLOG',
IN_PROGRESS: 'IN_PROGRESS',
IN_REVIEW: 'IN_PREVIEW',
IN_REVIEW: 'IN_REVIEW',
SELECTED_FOR_DEVELOPMENT: 'SELECTED_FOR_DEVELOPMENT'
};

Expand Down

0 comments on commit 83d70af

Please sign in to comment.