fix(ui): sessions search tabs
This commit is contained in:
parent
b6fa43a2be
commit
bf818d2683
1 changed files with 2 additions and 2 deletions
|
|
@ -119,10 +119,10 @@ class SearchStore {
|
|||
apply(filter: any, fromUrl: boolean) {
|
||||
if (fromUrl) {
|
||||
this.instance = new Search(filter);
|
||||
this.currentPage = 1;
|
||||
} else {
|
||||
this.instance = { ...this.instance, ...filter };
|
||||
this.instance = new Search({ ...this.instance.toData(), ...filter });
|
||||
}
|
||||
this.currentPage = 1;
|
||||
}
|
||||
|
||||
applyFilter(filter: any, force = false) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue