From a60796ec0bd610eadfc2e96cc4e2f0f49db58b2f Mon Sep 17 00:00:00 2001 From: Kabilar Gunalan Date: Tue, 10 Dec 2024 21:31:58 -0600 Subject: [PATCH] Fix download url --- web/src/views/DandisetLandingView/DownloadDialog.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/views/DandisetLandingView/DownloadDialog.vue b/web/src/views/DandisetLandingView/DownloadDialog.vue index 8e72e949d..d5a5f379d 100644 --- a/web/src/views/DandisetLandingView/DownloadDialog.vue +++ b/web/src/views/DandisetLandingView/DownloadDialog.vue @@ -126,10 +126,10 @@ function formatDownloadCommand(identifier: string, version: string): string { } if (!version) { - return `dandi download ${baseUrl}:${identifier}`; + return `dandi download ${baseUrl}${identifier}`; } - return `dandi download ${baseUrl}:${identifier}/${version}`; + return `dandi download ${baseUrl}${identifier}/${version}`; }