We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d42b785 commit 073ca25Copy full SHA for 073ca25
viplab-standalone-frontend-vue/src/pages/viplab/App.vue
@@ -554,7 +554,7 @@
554
filteredDownloadArtifacts(returnedUnmodifiedArtifacts.artifacts)"
555
:key="artifact.identifier+'Download'"
556
>
557
- <a
+ <a v-if="(artifact.type !== 's3file')"
558
href="#"
559
@click="
560
save(
@@ -565,6 +565,10 @@
565
"
566
>{{ artifact.path }}</a
567
568
+ <a v-else
569
+ :href="artifact.url"
570
+ >{{ artifact.path }}</a>
571
+
572
</li>
573
</ul>
574
</div>
0 commit comments