[ARVADOS-WORKBENCH2] updated: 1.2.0-380-g328078c
Git user
git at public.curoverse.com
Mon Sep 17 04:55:51 EDT 2018
Summary of changes:
src/store/shared-with-me-panel/shared-with-me-middleware-service.ts | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
via 328078ca88804f25882ac091c92b753ed724b9ec (commit)
from 5fdf4adc6981e60169966e549e37c5611d7d420b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 328078ca88804f25882ac091c92b753ed724b9ec
Author: Michal Klobukowski <michal.klobukowski at contractors.roche.com>
Date: Mon Sep 17 10:55:26 2018 +0200
Fix filtering on shared-with-me panel
Feature #13751
Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski <michal.klobukowski at contractors.roche.com>
diff --git a/src/store/shared-with-me-panel/shared-with-me-middleware-service.ts b/src/store/shared-with-me-panel/shared-with-me-middleware-service.ts
index 0989c54..1ebb13e 100644
--- a/src/store/shared-with-me-panel/shared-with-me-middleware-service.ts
+++ b/src/store/shared-with-me-panel/shared-with-me-middleware-service.ts
@@ -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) => {
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list