X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ae94f4d8463ff6350329e802cb902c8dad96a710..ffc9666a04b0cef18a15571c1a0f4fdc41e87b75:/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 437b22ed..7849109d 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 @@ -8,7 +8,6 @@ import { DownloadAction } from "./download-action"; import { getNodeValue } from "../../../models/tree"; 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,7 +16,7 @@ const mapStateToProps = (state: RootState) => { const file = getNodeValue(resource.uuid)(state.collectionPanelFiles); if (file) { return { - href: sanitizeToken(file.url, true), + href: file.url, kind: 'file', currentCollectionUuid }; @@ -25,7 +24,7 @@ const mapStateToProps = (state: RootState) => { } else { const files = filterCollectionFilesBySelection(state.collectionPanelFiles, true); return { - href: files.map(file => sanitizeToken(file.url, true)), + href: files.map(file => file.url), kind: 'files', currentCollectionUuid };