16622: Add Enzyme tests for WebDavS3InfoDialog
[arvados.git] / src / store / collections / collection-info-actions.ts
index 1509206d668690a0b776c064b7d04dd652e9a04f..49fe54f67ea6ccacee79135178ea23b912f1607d 100644 (file)
@@ -13,7 +13,7 @@ export interface WebDavS3InfoDialogData {
     uuid: string;
     token: string;
     downloadUrl: string;
-    homeCluster: string;
+    collectionsUrl: string;
     localCluster: string;
     username: string;
     activeTab: number;
@@ -27,8 +27,8 @@ export const openWebDavS3InfoDialog = (uuid: string, activeTab?: number) =>
             data: {
                 title: 'Access Collection using WebDAV or S3',
                 token: getState().auth.apiToken,
-                downloadUrl: getState().auth.config.keepWebInlineServiceUrl,
-                homeCluster: getState().auth.homeCluster,
+                downloadUrl: getState().auth.config.keepWebServiceUrl,
+                collectionsUrl: getState().auth.config.keepWebInlineServiceUrl,
                 localCluster: getState().auth.localCluster,
                 username: getState().auth.user!.username,
                 activeTab: activeTab || 0,