add filter by create_at for advance search bar
[arvados.git] / src / store / search-results-panel / search-results-middleware-service.ts
index 5ccb61bf6961c11ec95c3a8f11a706a9c6258490..0b38444205e496ed0d6d440e00fe16b214232fcc 100644 (file)
@@ -39,7 +39,7 @@ export class SearchResultsMiddlewareService extends DataExplorerMiddlewareServic
 
 export const getParams = (dataExplorer: DataExplorer, searchValue: string) => ({
     ...dataExplorerToListParams(dataExplorer),
-    filters: getFilters('name', searchValue),
+    filters: getFilters('name', searchValue, {}),
     order: getOrder(dataExplorer)
 });