[arvados-workbench2] updated: 2.7.0-212-gce84334e
git repository hosting
git at public.arvados.org
Mon Nov 6 14:11:41 UTC 2023
Summary of changes:
src/store/side-panel-tree/side-panel-tree-actions.ts | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
via ce84334e25316fdf1671bdf5ce8acda9c1a455de (commit)
from 992d07cd979b34d79fbe3135be089a86b13f0201 (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 ce84334e25316fdf1671bdf5ce8acda9c1a455de
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Mon Nov 6 09:11:35 2023 -0500
19302: fixed node limit var Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/src/store/side-panel-tree/side-panel-tree-actions.ts b/src/store/side-panel-tree/side-panel-tree-actions.ts
index 579b9550..71c72cd3 100644
--- a/src/store/side-panel-tree/side-panel-tree-actions.ts
+++ b/src/store/side-panel-tree/side-panel-tree-actions.ts
@@ -29,7 +29,7 @@ export enum SidePanelTreeCategory {
}
export const SIDE_PANEL_TREE = 'sidePanelTree';
-const TREE_NODE_LIMIT = 50
+const SP_TREE_NODE_LIMIT = 50
export const getSidePanelTree = (treePicker: TreePicker) =>
getTreePicker<ProjectResource | string>(SIDE_PANEL_TREE)(treePicker);
@@ -136,7 +136,7 @@ export const loadFavoritesTree = () => async (dispatch: Dispatch, getState: () =
.addEqual('tail_kind', ResourceKind.USER)
.getFilters(),
order: new OrderBuilder<ProjectResource>().addDesc('createdAt').getOrder(),
- limit: 50,
+ limit: SP_TREE_NODE_LIMIT,
};
const { items } = await services.linkService.list(params);
@@ -166,7 +166,7 @@ export const loadPublicFavoritesTree = () => async (dispatch: Dispatch, getState
.addIsA('head_uuid', typeFilters)
.getFilters(),
order: new OrderBuilder<ProjectResource>().addDesc('createdAt').getOrder(),
- limit: TREE_NODE_LIMIT,
+ limit: SP_TREE_NODE_LIMIT,
};
const { items } = await services.linkService.list(params);
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list