Skip to content

Commit

Permalink
Ignore visits context logic on search
Browse files Browse the repository at this point in the history
- fixes issue #27
- code still exists for that; just explicitly changes the flag to ignore them for now
  • Loading branch information
poltak committed Jun 13, 2017
1 parent 1bd5a21 commit 3ebb8b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/overview/actions.js
Expand Up @@ -41,7 +41,7 @@ export const newSearch = asyncActionCreator(() => async (dispatch, getState) =>
query,
startDate,
endDate,
includeContext: true,
includeContext: false,
})
return searchResult
})
Expand All @@ -57,7 +57,7 @@ export const expandSearch = asyncActionCreator(() => async (dispatch, getState)
query,
startDate,
endDate,
includeContext: true,
includeContext: false,
skipUntil,
})
return newSearchResult
Expand Down

0 comments on commit 3ebb8b5

Please sign in to comment.