Skip to content

Commit

Permalink
fix(Browsing Issues): fix jql filters in recent tab
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lopukhin committed Apr 5, 2018
1 parent 415bb76 commit e1ceb13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/sagas/issues.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ export function* fetchRecentIssues(): Generator<*, *, *> {
startIndex: 0,
stopIndex: 1000,
jql,
boardId: issuesSourceType !== 'project' ? issuesSourceId : null,
boardId: issuesSourceType === 'board' ? issuesSourceId : null,
additionalFields: epicLinkFieldId ? [epicLinkFieldId] : [],
},
) :
Expand Down

0 comments on commit e1ceb13

Please sign in to comment.