1
0
Fork 0
mirror of https://github.com/Luzifer/share.git synced 2025-01-08 19:41:29 +00:00

Compare commits

...

2 commits

Author SHA1 Message Date
6344610c18
prepare release v0.14.1 2024-03-22 14:56:28 +01:00
a4c32175a8
Fix: Download-Button not linked to file
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2024-03-22 14:56:13 +01:00
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,7 @@
# 0.14.1 / 2024-03-22
* Fix: Download-Button not linked to file
# 0.14.0 / 2024-03-18
* Port frontend to Vue 3 / Bootstrap 5.3

View file

@ -100,9 +100,12 @@
>
<div class="card-body text-center">
<h2><i class="fas fa-cloud-download-alt" /></h2>
<button class="btn btn-success">
<a
class="btn btn-success"
:href="path"
>
{{ fileName }}
</button>
</a>
</div>
</div>
</template>