Skip to content

Commit

Permalink
change button to link
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorHarbo committed Jul 24, 2023
1 parent 3fbace7 commit 26036cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/src/components/searchResults/SearchResultExport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<button v-if="configs.exportOptions.csvAllowed === 'true'" class="exportButton" @click="toggleCsvExportOptions()">
CSV export
</button>
<button v-if="configs.exportOptions.zipAllowed === 'true'" class="exportButton" @click="toggleZipExportOptions()">
<a v-if="configs.exportOptions.zipAllowed === 'true'" class="exportButton" :href="exportToZip()">
Batch content export
</button>
</a>
</div>
<div v-if="csvExportOpen" class="csvExportOptions">
<div class="csvExportContent">
Expand Down

0 comments on commit 26036cd

Please sign in to comment.