diff --git a/frontend/app/components/shared/SessionSearch/SessionSearch.tsx b/frontend/app/components/shared/SessionSearch/SessionSearch.tsx index 8b782f166..2e3f36279 100644 --- a/frontend/app/components/shared/SessionSearch/SessionSearch.tsx +++ b/frontend/app/components/shared/SessionSearch/SessionSearch.tsx @@ -54,10 +54,14 @@ function SessionSearch() { const onAddFilter = (filter: any) => { searchStore.addFilter(filter); + + debounceFetch(); }; const onUpdateFilter = (filterIndex: any, filter: any) => { searchStore.updateFilter(filterIndex, filter); + + debounceFetch(); }; const onFilterMove = (newFilters: any) => { diff --git a/frontend/app/mstore/userStore.ts b/frontend/app/mstore/userStore.ts index 0679de2c8..6ed0cd516 100644 --- a/frontend/app/mstore/userStore.ts +++ b/frontend/app/mstore/userStore.ts @@ -88,7 +88,6 @@ class UserStore { get isEnterprise() { return ( this.account?.edition === 'ee' || - this.account?.edition === 'msaas' || this.authStore.authDetails?.edition === 'ee' ); }