Fix bug in My Cards and Global Search

This commit is contained in:
John R. Supplee 2021-03-31 13:05:39 +02:00
parent db311f677b
commit 392b701956
4 changed files with 24 additions and 20 deletions

View file

@ -96,7 +96,7 @@ class GlobalSearchComponent extends CardSearchPagedComponent {
// eslint-disable-next-line no-console
// console.log('params:', query.getParams());
this.queryParams = query.getParams();
this.queryParams = query.getQueryParams().getParams();
if (query.hasErrors()) {
this.searching.set(false);
@ -106,7 +106,7 @@ class GlobalSearchComponent extends CardSearchPagedComponent {
return;
}
this.runGlobalSearch(query.getParams());
this.runGlobalSearch(query.getQueryParams());
}
searchInstructions() {