Skip to content

Commit

Permalink
Fix: Enable delete button when new messages arrive
Browse files Browse the repository at this point in the history
See #185
  • Loading branch information
axllent committed Oct 13, 2023
1 parent d43560d commit 56d61ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/ui-src/components/NavMailbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default {
</button>

<button class="list-group-item list-group-item-action" data-bs-toggle="modal"
data-bs-target="#DeleteAllModal" :disabled="!mailbox.count">
data-bs-target="#DeleteAllModal" :disabled="!mailbox.total">
<i class="bi bi-trash-fill me-1 text-danger"></i>
Delete all
</button>
Expand Down

0 comments on commit 56d61ae

Please sign in to comment.