thunderbird-patch-review
Easy-to-use patch review interface for Thunderbird
Contribute: ~marcc/thunderbird-review-plugin@lists.sr.ht
git clone git://mccd.space/thunderbird-patch-review
| Log | Files | Refs | README | LICENSE |
commit 09bb59858258802de64d8000468cc2ea4b7ec52a parent d0bfbc768602369cfb77be7be3bd752baac64fd9 Author: Pi Agent <agent@pi.local> Date: Sat, 18 Jul 2026 13:55:34 +0200 review: drop the comment count from the top bar Diffstat:
| M | extension/review/review.css | | | 1 | - |
| M | extension/review/review.html | | | 1 | - |
| M | extension/review/review.js | | | 1 | - |
3 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/extension/review/review.css b/extension/review/review.css
@@ -69,7 +69,6 @@ body {
flex-shrink: 0;
}
-#comment-count { color: var(--muted); }
#repo-path {
width: 22rem;
diff --git a/extension/review/review.html b/extension/review/review.html
@@ -9,7 +9,6 @@
<header id="topbar">
<div id="series-title">Loading…</div>
<div id="actions">
- <span id="comment-count" title="Draft comments">0 comments</span>
<input id="repo-path" type="text" placeholder="repository path" spellcheck="false">
<button id="btn-browse" title="Choose the repository directory">Browse…</button>
<div class="split" id="apply-split">
diff --git a/extension/review/review.js b/extension/review/review.js
@@ -459,7 +459,6 @@ function editorBox(initial, loc, close) {
function updateCount() {
const total = state.comments.reduce((sum, c) => sum + Object.keys(c).length, 0);
- $("#comment-count").textContent = `${total} comment${total === 1 ? "" : "s"}`;
// The discard button only makes sense once there are drafts to lose.
$("#btn-discard").hidden = total === 0;
}