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 69004df commit 2c59a49Copy full SHA for 2c59a49
frontend/src/views/ReportView.vue
@@ -11,7 +11,7 @@
11
<a v-if="report.Running && report.Job" role="button" href="" class="negative" @click.prevent="showCancel = true">Stop Run</a>
12
<a v-if="!report.Running" role="button" class="negative" href="" @click.prevent="showDelete = true">Delete</a>
13
<a v-if="!report.Running" role="button" href="" @click.prevent="showRerun = true">Re-Run</a>
14
- <a v-if="!report.Running" role="button" :href="$api.getReportDownloadLink(report.Identifier)" download="report.html">Download</a>
+ <a v-if="!report.Running" role="button" :href="$api.getReportDownloadLink(report.Identifier)" :download="`report-${report.Identifier}.html`">Download</a>
15
</template>
16
</header>
17
<article>
0 commit comments