X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/409e53a945f68678eb37dd09c8dc2ad6343d236a..refs/heads/19865-search-clearing-fix:/src/store/collections/collection-info-actions.ts diff --git a/src/store/collections/collection-info-actions.ts b/src/store/collections/collection-info-actions.ts index 5aa1cf80..6107c409 100644 --- a/src/store/collections/collection-info-actions.ts +++ b/src/store/collections/collection-info-actions.ts @@ -3,11 +3,11 @@ // SPDX-License-Identifier: AGPL-3.0 import { Dispatch } from "redux"; -import { RootState } from "~/store/store"; -import { ServiceRepository } from "~/services/services"; -import { dialogActions } from '~/store/dialog/dialog-actions'; +import { RootState } from "store/store"; +import { ServiceRepository } from "services/services"; +import { dialogActions } from 'store/dialog/dialog-actions'; import { getNewExtraToken } from "../auth/auth-action"; -import { CollectionResource } from "~/models/collection"; +import { CollectionResource } from "models/collection"; export const COLLECTION_WEBDAV_S3_DIALOG_NAME = 'collectionWebdavS3Dialog'; @@ -29,7 +29,7 @@ export const openWebDavS3InfoDialog = (uuid: string, activeTab?: number) => dispatch(dialogActions.OPEN_DIALOG({ id: COLLECTION_WEBDAV_S3_DIALOG_NAME, data: { - title: 'Access Collection using WebDAV or S3', + title: 'Open with 3rd party client', token: getState().auth.extraApiToken || getState().auth.apiToken, downloadUrl: getState().auth.config.keepWebServiceUrl, collectionsUrl: getState().auth.config.keepWebInlineServiceUrl,