Fix side panel projects ordering
[arvados-workbench2.git] / src / store / shared-with-me-panel / shared-with-me-middleware-service.ts
index 0989c5470d3caa40c1af4b3a25dfcc4c549b19b7..1ebb13ecb05053cfb06336f9a5c5bf9ca65dd687 100644 (file)
@@ -48,9 +48,10 @@ export const getParams = (dataExplorer: DataExplorer) => ({
 });
 
 export const getFilters = (dataExplorer: DataExplorer) => {
-    return new FilterBuilder()
+    const filters = new FilterBuilder()
         .addILike("name", dataExplorer.searchValue)
         .getFilters();
+    return `[${filters}]`;
 };
 
 export const getOrder = (dataExplorer: DataExplorer) => {