Skip to content

Commit 1f7a604

Browse files
committed
Merge branch 'release/v1.19.2'
2 parents 609b2a6 + 1494332 commit 1f7a604

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
Notable changes to Mailpit will be documented in this file.
44

5+
## [v1.19.2]
6+
7+
### Chore
8+
- Update Go dependencies
9+
10+
### Fix
11+
- Update Inbox "Delete All" count when new messages are detected ([#334](https://github.com/axllent/mailpit/issues/334))
12+
13+
514
## [v1.19.1]
615

716
### Feature

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ require (
5959
golang.org/x/sys v0.22.0 // indirect
6060
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
6161
modernc.org/gc/v3 v3.0.0-20240304020402-f0dba7c97c2b // indirect
62-
modernc.org/libc v1.55.1 // indirect
62+
modernc.org/libc v1.55.3 // indirect
6363
modernc.org/mathutil v1.6.0 // indirect
6464
modernc.org/memory v1.8.0 // indirect
6565
modernc.org/strutil v1.2.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ modernc.org/gc/v2 v2.4.1 h1:9cNzOqPyMJBvrUipmynX0ZohMhcxPtMccYgGOJdOiBw=
205205
modernc.org/gc/v2 v2.4.1/go.mod h1:wzN5dK1AzVGoH6XOzc3YZ+ey/jPgYHLuVckd62P0GYU=
206206
modernc.org/gc/v3 v3.0.0-20240304020402-f0dba7c97c2b h1:BnN1t+pb1cy61zbvSUV7SeI0PwosMhlAEi/vBY4qxp8=
207207
modernc.org/gc/v3 v3.0.0-20240304020402-f0dba7c97c2b/go.mod h1:Qz0X07sNOR1jWYCrJMEnbW/X55x206Q7Vt4mz6/wHp4=
208-
modernc.org/libc v1.55.1 h1:2K/vMbMDGymj0CO4mcQybYW8SW3czB+u9rlghpMkTrI=
209-
modernc.org/libc v1.55.1/go.mod h1:qFXepLhz+JjFThQ4kzwzOjA/y/artDeg+pcYnY+Q83w=
208+
modernc.org/libc v1.55.3 h1:AzcW1mhlPNrRtjS5sS+eW2ISCgSOLLNyFzRh/V3Qj/U=
209+
modernc.org/libc v1.55.3/go.mod h1:qFXepLhz+JjFThQ4kzwzOjA/y/artDeg+pcYnY+Q83w=
210210
modernc.org/mathutil v1.6.0 h1:fRe9+AmYlaej+64JsEEhoWuAYBkOtQiMEU7n/XgfYi4=
211211
modernc.org/mathutil v1.6.0/go.mod h1:Ui5Q9q1TR2gFm0AQRqQUaBWFLAhQpCwNcuhBOSedWPo=
212212
modernc.org/memory v1.8.0 h1:IqGTL6eFMaDZZhEWwcREgeMXYwmW83LYW8cROZYkg+E=

server/ui-src/components/NavMailbox.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ export default {
131131
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
132132
</div>
133133
<div class="modal-body">
134-
This will permanently delete {{ formatNumber(mailbox.count) }}
135-
message<span v-if="mailbox.count > 1">s</span>.
134+
This will permanently delete {{ formatNumber(mailbox.total) }}
135+
message<span v-if="mailbox.total > 1">s</span>.
136136
</div>
137137
<div class="modal-footer">
138138
<button type="button" class="btn btn-outline-secondary" data-bs-dismiss="modal">Cancel</button>

0 commit comments

Comments
 (0)