[ARVADOS-WORKBENCH2] updated: 1.4.1-400-gb1250d13

Git user git at public.arvados.org
Fri Aug 14 19:49:53 UTC 2020


Summary of changes:
 src/store/data-explorer/data-explorer-middleware-service.ts        | 3 +--
 src/store/workflow-panel/workflow-panel-actions.ts                 | 4 ++--
 src/views-components/current-token-dialog/current-token-dialog.tsx | 2 +-
 3 files changed, 4 insertions(+), 5 deletions(-)

       via  b1250d13a43d4351c6cbca7990c996b3219693d0 (commit)
       via  443670b243162855896b3cd46e782faa43cae266 (commit)
      from  eef287410add9414413e19be236e6f422eeb3e7c (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 b1250d13a43d4351c6cbca7990c996b3219693d0
Author: Peter Amstutz <peter.amstutz at curii.com>
Date:   Fri Aug 14 15:41:31 2020 -0400

    16683: Take count out from list params. Fix getPublicGroupUuid
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>

diff --git a/src/store/data-explorer/data-explorer-middleware-service.ts b/src/store/data-explorer/data-explorer-middleware-service.ts
index a7c32f42..64e6e50b 100644
--- a/src/store/data-explorer/data-explorer-middleware-service.ts
+++ b/src/store/data-explorer/data-explorer-middleware-service.ts
@@ -35,8 +35,7 @@ export const getDataExplorerColumnFilters = <T>(columns: DataColumns<T>, columnN
 
 export const dataExplorerToListParams = (dataExplorer: DataExplorer) => ({
     limit: dataExplorer.rowsPerPage,
-    offset: dataExplorer.page * dataExplorer.rowsPerPage,
-    count: "none"
+    offset: dataExplorer.page * dataExplorer.rowsPerPage
 });
 
 export const listResultsToDataExplorerItemsMeta = <R>({ itemsAvailable, offset, limit }: ListResults<R>) => ({
diff --git a/src/store/workflow-panel/workflow-panel-actions.ts b/src/store/workflow-panel/workflow-panel-actions.ts
index 3f91c102..bfd899fd 100644
--- a/src/store/workflow-panel/workflow-panel-actions.ts
+++ b/src/store/workflow-panel/workflow-panel-actions.ts
@@ -50,11 +50,11 @@ export const openRunProcess = (uuid: string) =>
     };
 
 export const getPublicUserUuid = (state: RootState) => {
-    const prefix = getProperty<string>(UUID_PREFIX_PROPERTY_NAME)(state.properties);
+    const prefix = state.auth.localCluster;
     return `${prefix}-tpzed-anonymouspublic`;
 };
 export const getPublicGroupUuid = (state: RootState) => {
-    const prefix = getProperty<string>(UUID_PREFIX_PROPERTY_NAME)(state.properties);
+    const prefix = state.auth.localCluster;
     return `${prefix}-j7d0g-anonymouspublic`;
 };
 

commit 443670b243162855896b3cd46e782faa43cae266
Author: Peter Amstutz <peter.amstutz at curii.com>
Date:   Fri Aug 14 14:58:44 2020 -0400

    16683: Remove reference to "klingenc"
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>

diff --git a/src/views-components/current-token-dialog/current-token-dialog.tsx b/src/views-components/current-token-dialog/current-token-dialog.tsx
index bc0071af..e5208d44 100644
--- a/src/views-components/current-token-dialog/current-token-dialog.tsx
+++ b/src/views-components/current-token-dialog/current-token-dialog.tsx
@@ -57,7 +57,7 @@ export const CurrentTokenDialog =
                         </Typography>
                     </Typography>
                     <Typography  paragraph={true}>
-                        Paste the following lines at a shell prompt to set up the necessary environment for Arvados SDKs to authenticate to your klingenc account.
+                        Paste the following lines at a shell prompt to set up the necessary environment for Arvados SDKs to authenticate to your account.
                             </Typography>
                     <DefaultCodeSnippet lines={[getSnippet(data)]} />
                     <Typography >

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list