mirror of
https://github.com/wekan/wekan.git
synced 2025-12-30 22:28:49 +01:00
Fix bug in My Cards and Global Search
This commit is contained in:
parent
db311f677b
commit
392b701956
4 changed files with 24 additions and 20 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue