[arvados] updated: 2.7.0-6583-g1641476172

git repository hosting git at public.arvados.org
Thu May 16 18:54:12 UTC 2024


Summary of changes:
 .../details-card/{root-details-card.tsx => details-card-root.tsx}     | 2 +-
 services/workbench2/src/views/project-panel/project-panel.tsx         | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
 rename services/workbench2/src/views-components/details-card/{root-details-card.tsx => details-card-root.tsx} (94%)

       via  164147617229e6a2624d34467945cddfe309cda9 (commit)
      from  d19919fd9ccbeacf67d899ba72b5ef5d968f786f (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 164147617229e6a2624d34467945cddfe309cda9
Author: Lisa Knox <lisaknox83 at gmail.com>
Date:   Thu May 16 14:54:05 2024 -0400

    21224: renamed DetailsCardRoot
    
    Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>

diff --git a/services/workbench2/src/views-components/details-card/root-details-card.tsx b/services/workbench2/src/views-components/details-card/details-card-root.tsx
similarity index 94%
rename from services/workbench2/src/views-components/details-card/root-details-card.tsx
rename to services/workbench2/src/views-components/details-card/details-card-root.tsx
index 8b4ca558b2..7ae31ef53a 100644
--- a/services/workbench2/src/views-components/details-card/root-details-card.tsx
+++ b/services/workbench2/src/views-components/details-card/details-card-root.tsx
@@ -24,7 +24,7 @@ type DetailsCardProps = {
     currentResource: ProjectResource | UserResource;
 };
 
-export const RootDetailsCard = connect(mapStateToProps)(({ currentResource }: DetailsCardProps) => {
+export const DetailsCardRoot = connect(mapStateToProps)(({ currentResource }: DetailsCardProps) => {
     if (!currentResource) {
         return null;
     }
diff --git a/services/workbench2/src/views/project-panel/project-panel.tsx b/services/workbench2/src/views/project-panel/project-panel.tsx
index b9401a7b44..19408d5db9 100644
--- a/services/workbench2/src/views/project-panel/project-panel.tsx
+++ b/services/workbench2/src/views/project-panel/project-panel.tsx
@@ -52,7 +52,7 @@ import { CollectionResource } from 'models/collection';
 import { resourceIsFrozen } from 'common/frozen-resources';
 import { ProjectResource } from 'models/project';
 import { deselectAllOthers, toggleOne } from 'store/multiselect/multiselect-actions';
-import { RootDetailsCard } from 'views-components/details-card/root-details-card'; 
+import { DetailsCardRoot } from 'views-components/details-card/details-card-root'; 
 
 type CssRules = 'root' | 'button' ;
 
@@ -269,7 +269,7 @@ export const ProjectPanel = withStyles(styles)(
             render() {
                 const { classes } = this.props;
                 return <div data-cy='project-panel' className={classes.root}>
-                    <RootDetailsCard />
+                    <DetailsCardRoot />
                     <DataExplorer
                         id={PROJECT_PANEL_ID}
                         onRowClick={this.handleRowClick}

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list