Skip to content

Commit

Permalink
Merge pull request #135 from zimmerman-zimmerman/DS-2252
Browse files Browse the repository at this point in the history
DS-2252
  • Loading branch information
luminhan-zz authored May 19, 2020
2 parents f56b44e + e176c26 commit 1b40bab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/modules/QueryBuilder/state/effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,8 @@ export const withEffects: StoreEffect = store => {
? `reporting_org_secondary_reporter:(${secondaryReporter &&
secondaryReporter.join(' ')})`
: null,
get(countries, 'length', 0) && rowFormat === 'activity'
get(countries, 'length', 0) &&
(rowFormat === 'activity' || rowFormat === 'budget')
? `recipient_country_code:(${countries && countries.join(' ')})`
: null,
get(countries, 'length', 0) && rowFormat === 'transaction'
Expand Down

0 comments on commit 1b40bab

Please sign in to comment.