[arvados] updated: 2.7.0-6090-g9548790f00

git repository hosting git at public.arvados.org
Wed Mar 13 13:21:01 UTC 2024


Summary of changes:
 .../workbench2/src/store/side-panel-tree/side-panel-tree-actions.ts | 6 ------
 1 file changed, 6 deletions(-)

       via  9548790f004624cc6a143bb8cf9267e2fe7cbada (commit)
      from  0f3ce3e9251fbcdd761a9b531332eb94a10381c0 (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 9548790f004624cc6a143bb8cf9267e2fe7cbada
Author: Lisa Knox <lisaknox83 at gmail.com>
Date:   Wed Mar 13 09:20:58 2024 -0400

    21357: removed select field Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>

diff --git a/services/workbench2/src/store/side-panel-tree/side-panel-tree-actions.ts b/services/workbench2/src/store/side-panel-tree/side-panel-tree-actions.ts
index 2fadb0ec01..b03ed8956e 100644
--- a/services/workbench2/src/store/side-panel-tree/side-panel-tree-actions.ts
+++ b/services/workbench2/src/store/side-panel-tree/side-panel-tree-actions.ts
@@ -165,19 +165,16 @@ const setFaves = async(links: LinkResource[], dispatch: Dispatch, getState: () =
 
     const uuids = links.map(it => it.headUuid);
     const groupItems: any = await services.groupsService.list({
-        select: ['uuid', 'name'],
         filters: new FilterBuilder()
             .addIn("uuid", uuids)
             .getFilters()
     });
     const collectionItems: any = await services.collectionService.list({
-        select: ['uuid', 'name'],
         filters: new FilterBuilder()
             .addIn("uuid", uuids)
             .getFilters()
     });
     const processItems: any = await services.containerRequestService.list({
-        select: ['uuid', 'name'],
         filters: new FilterBuilder()
             .addIn("uuid", uuids)
             .getFilters()
@@ -221,21 +218,18 @@ export const loadPublicFavoritesTree = () => async (dispatch: Dispatch, getState
 
     const uuids = items.map(it => it.headUuid);
     const groupItems: any = await services.groupsService.list({
-        select: ['uuid', 'name'],
         filters: new FilterBuilder()
             .addIn("uuid", uuids)
             .addIsA("uuid", typeFilters)
             .getFilters()
     });
     const collectionItems: any = await services.collectionService.list({
-        select: ['uuid', 'name'],
         filters: new FilterBuilder()
             .addIn("uuid", uuids)
             .addIsA("uuid", typeFilters)
             .getFilters()
     });
     const processItems: any = await services.containerRequestService.list({
-        select: ['uuid', 'name'],
         filters: new FilterBuilder()
             .addIn("uuid", uuids)
             .addIsA("uuid", typeFilters)

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list