X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ec2ce1a965e15cb272737251b56bca2c1529ebff..7776b799eed223b9318443c1e319e01957a8fb45:/src/views-components/context-menu/actions/download-collection-file-action.tsx diff --git a/src/views-components/context-menu/actions/download-collection-file-action.tsx b/src/views-components/context-menu/actions/download-collection-file-action.tsx index aadc1d11..3e4e4a0b 100644 --- a/src/views-components/context-menu/actions/download-collection-file-action.tsx +++ b/src/views-components/context-menu/actions/download-collection-file-action.tsx @@ -6,9 +6,9 @@ import { connect } from "react-redux"; import { RootState } from "../../../store/store"; import { DownloadAction } from "./download-action"; import { getNodeValue } from "../../../models/tree"; -import { CollectionFileType } from "../../../models/collection-file"; import { ContextMenuKind } from '../context-menu'; import { filterCollectionFilesBySelection } from "~/store/collection-panel/collection-panel-files/collection-panel-files-state"; +import { sanitizeToken } from "./helpers"; const mapStateToProps = (state: RootState) => { const { resource } = state.contextMenu; @@ -17,8 +17,7 @@ const mapStateToProps = (state: RootState) => { const file = getNodeValue(resource.uuid)(state.collectionPanelFiles); if (file) { return { - href: file.url, - download: file.type === CollectionFileType.DIRECTORY ? undefined : file.name, + href: sanitizeToken(file.url, true), kind: 'file', currentCollectionUuid }; @@ -27,7 +26,6 @@ const mapStateToProps = (state: RootState) => { const files = filterCollectionFilesBySelection(state.collectionPanelFiles, true); return { href: files.map(file => file.url), - download: files.map(file => file.name), kind: 'files', currentCollectionUuid };