[arvados] updated: 2.7.0-6101-g9f7943df04
git repository hosting
git at public.arvados.org
Fri Mar 1 20:26:03 UTC 2024
Summary of changes:
services/workbench2/src/store/breadcrumbs/breadcrumbs-actions.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 9f7943df047aa10bb4b796f0f9780c29bf854332 (commit)
from 7889b2946c77867e3bfed76ec787bb36be67f3e2 (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 9f7943df047aa10bb4b796f0f9780c29bf854332
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Fri Mar 1 15:25:58 2024 -0500
21412: set fullName to fall back to userName if undefined Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/services/workbench2/src/store/breadcrumbs/breadcrumbs-actions.ts b/services/workbench2/src/store/breadcrumbs/breadcrumbs-actions.ts
index a374fd1a24..501850d2c3 100644
--- a/services/workbench2/src/store/breadcrumbs/breadcrumbs-actions.ts
+++ b/services/workbench2/src/store/breadcrumbs/breadcrumbs-actions.ts
@@ -83,7 +83,7 @@ export const setSidePanelBreadcrumbs = (uuid: string) =>
// Handle another user root project
const user = getResource<UserResource>(uuid)(getState().resources);
breadcrumbs.push({
- label: (user as any)?.fullName || SidePanelTreeCategory.PROJECTS,
+ label: (user as any)?.fullName || user?.username || uuid,
uuid: user?.uuid || uuid,
icon: getSidePanelIcon(SidePanelTreeCategory.PROJECTS)
});
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list