From e3f9ecf174cb0c1cd510efbfdcf69b23b30fade3 Mon Sep 17 00:00:00 2001 From: Alexey Volkov Date: Wed, 27 Nov 2019 18:03:12 -0800 Subject: [PATCH] Made the URL relative --- frontend/src/lib/Utils.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/Utils.tsx b/frontend/src/lib/Utils.tsx index 4313a0f3bc5c..25c0911621e8 100644 --- a/frontend/src/lib/Utils.tsx +++ b/frontend/src/lib/Utils.tsx @@ -325,7 +325,7 @@ export function generateGcsConsoleUri(gcsUri: string): string | undefined { const MINIO_URI_PREFIX = 'minio://'; function generateArtifactUrl(source: string, bucket: string, key: string): string { - return `https:/artifacts/get?source=${source}&bucket=${bucket}&key=${key}`; + return `artifacts/get?source=${source}&bucket=${bucket}&key=${key}`; } /**