[arvados] updated: 2.7.0-6268-gd255cead75
git repository hosting
git at public.arvados.org
Fri Apr 5 14:20:47 UTC 2024
Summary of changes:
services/workbench2/src/components/data-explorer/data-explorer.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via d255cead75409b8b9a39eba6d8bbabdbb7f26ef9 (commit)
from 04045c28be62fc77ee17522bfade541f893f92c2 (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 d255cead75409b8b9a39eba6d8bbabdbb7f26ef9
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Fri Apr 5 10:20:41 2024 -0400
21364: changed button disable to track itemsAvailable.length 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 9714a265a4..e29ff9c55e 100644
--- a/services/workbench2/src/components/data-explorer/data-explorer.tsx
+++ b/services/workbench2/src/components/data-explorer/data-explorer.tsx
@@ -321,7 +321,7 @@ export const DataExplorer = withStyles(styles)(
variant="contained"
color="primary"
style={{width: '100%', margin: '10px'}}
- disabled={ working || (page + 1) * rowsPerPage >= itemsAvailable}
+ disabled={working || items.length >= itemsAvailable}
>
Load more
</Button>
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list