1
0
mirror of https://github.com/axllent/mailpit.git synced 2024-12-28 23:06:43 +02:00

Merge branch 'release/1.1.3'

This commit is contained in:
Ralph Slooten 2022-09-14 16:46:50 +12:00
commit b228c9477e
2 changed files with 7 additions and 1 deletions

View File

@ -2,6 +2,12 @@
Notable changes to Mailpit will be documented in this file.
## 1.1.3
### Fix
- Update message download link
## 1.1.2
### UI

View File

@ -440,7 +440,7 @@ export default {
<a class="btn btn-outline-secondary ms-2 me-1 float-end" :class="messagePrev ? '': 'disabled'" :href="'#'+messagePrev" title="View previous message">
<i class="bi bi-caret-left-fill"></i>
</a>
<a :href="'api/' + message.ID + '/source?dl=1'" class="btn btn-outline-secondary me-2 float-end" title="Download message">
<a :href="'api/' + message.ID + '/raw?dl=1'" class="btn btn-outline-secondary me-2 float-end" title="Download message">
<i class="bi bi-file-arrow-down-fill"></i> <span class="d-none d-md-inline">Download</span>
</a>
</div>