Skip to content

Commit

Permalink
Fix docs and facets on /my route (#65)
Browse files Browse the repository at this point in the history
Update my.ts
  • Loading branch information
jeffdaley authored Mar 2, 2023
1 parent 2e6c672 commit 72b40ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/app/routes/authenticated/my.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ export default class AuthenticatedMyRoute extends Route {
: this.configSvc.config.algolia_docs_index_name + "_createdTime_desc";

let [facets, results] = await Promise.all([
this.algolia.getFacets.perform(searchIndex, params),
this.algolia.getDocResults.perform(searchIndex, params),
this.algolia.getFacets.perform(searchIndex, params, true),
this.algolia.getDocResults.perform(searchIndex, params, true),
]);

this.activeFilters.update(params);
Expand Down

0 comments on commit 72b40ee

Please sign in to comment.