[arvados] updated: 2.7.0-6579-g8cc7190e7f
git repository hosting
git at public.arvados.org
Thu May 16 18:23:39 UTC 2024
Summary of changes:
.../src/views-components/details-panel/project-details.tsx | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
via 8cc7190e7fdaf002e8f372e3146e377aaeed8539 (commit)
from 9ce49e908a4abdfb7f546181283b6a4a60f04a82 (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 8cc7190e7fdaf002e8f372e3146e377aaeed8539
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Thu May 16 14:23:36 2024 -0400
21224: changed project details order
Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/services/workbench2/src/views-components/details-panel/project-details.tsx b/services/workbench2/src/views-components/details-panel/project-details.tsx
index 7dc6709da5..8b153dccd4 100644
--- a/services/workbench2/src/views-components/details-panel/project-details.tsx
+++ b/services/workbench2/src/views-components/details-panel/project-details.tsx
@@ -93,11 +93,13 @@ const ProjectDetailsComponent = connect(mapStateToProps, mapDispatchToProps)(
: ''
}
<DetailsAttribute label='Type' value={project.groupClass === GroupClass.FILTER ? 'Filter group' : resourceLabel(ResourceKind.PROJECT)} />
+ <DetailsAttribute label='UUID' linkToUuid={project.uuid} value={project.uuid} />
<DetailsAttribute label='Owner' linkToUuid={project.ownerUuid}
uuidEnhancer={(uuid: string) => <ResourceWithName uuid={uuid} />} />
- <DetailsAttribute label='Last modified' value={formatDate(project.modifiedAt)} />
<DetailsAttribute label='Created at' value={formatDate(project.createdAt)} />
- <DetailsAttribute label='UUID' linkToUuid={project.uuid} value={project.uuid} />
+ <DetailsAttribute label='Last modified' value={formatDate(project.modifiedAt)} />
+ <DetailsAttribute label='Last modified by' linkToUuid={project.modifiedByUserUuid}
+ uuidEnhancer={(uuid: string) => <ResourceWithName uuid={uuid} />} />
<DetailsAttribute label='Description'>
{project.description ?
<RichTextEditorLink
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list