[arvados] updated: 2.7.0-6266-gfc2b788243

git repository hosting git at public.arvados.org
Tue Apr 2 14:08:19 UTC 2024


Summary of changes:
 services/workbench2/src/components/data-explorer/data-explorer.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

       via  fc2b788243335b16e6e61a7f3c35c6dc63d08ae1 (commit)
      from  0ddcae3222d4e9682c10f33d1144105e939fd0ee (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 fc2b788243335b16e6e61a7f3c35c6dc63d08ae1
Author: Lisa Knox <lisaknox83 at gmail.com>
Date:   Tue Apr 2 10:08:05 2024 -0400

    21364: changed elementPath to only display if am elment is selected Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>

diff --git a/services/workbench2/src/components/data-explorer/data-explorer.tsx b/services/workbench2/src/components/data-explorer/data-explorer.tsx
index 13ad46286c..9714a265a4 100644
--- a/services/workbench2/src/components/data-explorer/data-explorer.tsx
+++ b/services/workbench2/src/components/data-explorer/data-explorer.tsx
@@ -295,7 +295,7 @@ export const DataExplorer = withStyles(styles)(
                             <Toolbar className={classes.footer}>
                                 {elementPath && (
                                     <Grid container>
-                                        <span data-cy="element-path">{elementPath}</span>
+                                        <span data-cy="element-path">{elementPath.length > 2 ? elementPath : ''}</span>
                                     </Grid>
                                 )}
                                 <Grid
@@ -321,7 +321,7 @@ export const DataExplorer = withStyles(styles)(
                                             variant="contained"
                                             color="primary"  
                                             style={{width: '100%', margin: '10px'}}
-                                            disabled={ working || (page + 1) * rowsPerPage >= itemsAvailable || (itemsAvailable === 0 && page === 0)}
+                                            disabled={ working || (page + 1) * rowsPerPage >= itemsAvailable}
                                         >
                                             Load more
                                         </Button>

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list