[arvados] updated: 2.7.0-6037-g6b72f026b7
git repository hosting
git at public.arvados.org
Thu Feb 15 15:14:16 UTC 2024
Summary of changes:
.../src/views-components/context-menu/action-sets/user-action-set.ts | 2 +-
.../views-components/project-details-card/project-details-card.tsx | 5 ++++-
2 files changed, 5 insertions(+), 2 deletions(-)
via 6b72f026b7f9f47b42bc26aaed86b021ce8e0eb6 (commit)
from a60e439fc82ee7e866b3d15c62fe5b3760894ff4 (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 6b72f026b7f9f47b42bc26aaed86b021ce8e0eb6
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Thu Feb 15 10:14:10 2024 -0500
21224: changed menu names and tooltip props Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/services/workbench2/src/views-components/context-menu/action-sets/user-action-set.ts b/services/workbench2/src/views-components/context-menu/action-sets/user-action-set.ts
index 0108ff7e50..4ad01d64e9 100644
--- a/services/workbench2/src/views-components/context-menu/action-sets/user-action-set.ts
+++ b/services/workbench2/src/views-components/context-menu/action-sets/user-action-set.ts
@@ -36,7 +36,7 @@ export const userActionSet: ContextMenuActionSet = [
},
},
{
- name: 'Project',
+ name: 'Home Project',
icon: ProjectIcon,
execute: (dispatch, resources) => {
dispatch<any>(openUserProjects(resources[0].uuid));
diff --git a/services/workbench2/src/views-components/project-details-card/project-details-card.tsx b/services/workbench2/src/views-components/project-details-card/project-details-card.tsx
index 423cf3aebf..4c37281cdd 100644
--- a/services/workbench2/src/views-components/project-details-card/project-details-card.tsx
+++ b/services/workbench2/src/views-components/project-details-card/project-details-card.tsx
@@ -261,6 +261,7 @@ const UserCard: React.FC<UserCardProps> = ({ classes, currentResource, handleCon
)}
<Tooltip
title='More options'
+ disableFocusListener
>
<IconButton
aria-label='More options'
@@ -309,6 +310,7 @@ const ProjectCard: React.FC<ProjectCardProps> = ({ classes, currentResource, fro
{!!frozenByFullName && (
<Tooltip
className={classes.frozenIcon}
+ disableFocusListener
title={<span>Project was frozen by {frozenByFullName}</span>}
>
<FreezeIcon style={{ fontSize: 'inherit' }} />
@@ -320,7 +322,8 @@ const ProjectCard: React.FC<ProjectCardProps> = ({ classes, currentResource, fro
<section className={classes.contextMenuSection}>
<Tooltip
title='More options'
- >
+ disableFocusListener
+ >
<IconButton
aria-label='More options'
onClick={(ev) => handleContextMenu(ev, currentResource as any, isAdmin)}
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list