fix(ui): sessions search tabs

This commit is contained in:
Shekar Siri 2024-10-31 11:58:25 +01:00
parent b6fa43a2be
commit bf818d2683

View file

@ -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) {