Skip to content

Commit 073ca25

Browse files
committed
When downloading a file from s3 use direct url
1 parent d42b785 commit 073ca25

File tree

1 file changed

+5
-1
lines changed
  • viplab-standalone-frontend-vue/src/pages/viplab

1 file changed

+5
-1
lines changed

viplab-standalone-frontend-vue/src/pages/viplab/App.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@
554554
filteredDownloadArtifacts(returnedUnmodifiedArtifacts.artifacts)"
555555
:key="artifact.identifier+'Download'"
556556
>
557-
<a
557+
<a v-if="(artifact.type !== 's3file')"
558558
href="#"
559559
@click="
560560
save(
@@ -565,6 +565,10 @@
565565
"
566566
>{{ artifact.path }}</a
567567
>
568+
<a v-else
569+
:href="artifact.url"
570+
>{{ artifact.path }}</a>
571+
568572
</li>
569573
</ul>
570574
</div>

0 commit comments

Comments
 (0)