Skip to content

Commit

Permalink
Changes to component to work with the latest BC non-breaking DKAN (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmizzell authored Jun 12, 2020
1 parent 865f01c commit cae37b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
command: |
export PATH=$PATH:~/dkan-tools/bin
cd ~/sandbox
dktl make --frontend=fast-search --branch=fast-search
dktl make --frontend=fast-search
- run:
name: Install site
command: |
Expand Down Expand Up @@ -93,4 +93,4 @@ jobs:
- store_artifacts:
path: ~/sandbox/src/frontend/cypress/screenshots
- store_artifacts:
path: ~/sandbox/src/frontend/cypress/videos
path: ~/sandbox/src/frontend/cypress/videos
2 changes: 1 addition & 1 deletion src/components/Search/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default async function getData(
facetsResults: results.data.facets,
};
} else {
const results = await axios.get(`${searchEndpoint}?${apiParams}`);
const results = await axios.get(`${searchEndpoint}?${apiParams}&facets=0`);
type = 'SET_SEARCH_DATA';
data = {
totalItems: results.data.total,
Expand Down

0 comments on commit cae37b9

Please sign in to comment.