Skip to content

Commit

Permalink
Mark download links with download attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasjelonek committed Jan 7, 2025
1 parent d0a1c38 commit 23b2471
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/bakta-result/BaktaDownloads.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<template>
<ul class="list-group">
<li class="list-group-item" v-for="d of downloads" :key="d.label">
<a :href="d.url" class="me-2"><i class="bi bi-download"></i></a>
<a :href="d.url"> {{ d.label }}</a>
<a :href="d.url" class="me-2" download><i class="bi bi-download"></i></a>
<a :href="d.url" download> {{ d.label }}</a>
</li>
</ul>
</template>
Expand Down

0 comments on commit 23b2471

Please sign in to comment.