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

commit ca7e115497a69d92921b760c41ae4f6dbe332f94
parent edb20d9c39202c895ebebb7fc5a8900cd1d95b81
Author: Pi Agent <agent@pi.local>
Date:   Sat, 18 Jul 2026 22:37:19 +0200

review: title format Review Patchset (N); M comment(s)

Diffstat:
Mextension/review/review.js | 8++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/extension/review/review.js b/extension/review/review.js
@@ -82,12 +82,8 @@ function renderSeriesTitle() {
   }
   const n = state.series.length;
   const total = state.comments.reduce((sum, c) => sum + Object.keys(c).length, 0);
-  const parts = [
-    "Reviewing patchset",
-    `(${n} patch${n === 1 ? "" : "es"})`,
-  ];
-  if (total) parts.push(`${total} comment${total === 1 ? "" : "s"}`);
-  $("#series-title").textContent = parts.join(" — ");
+  $("#series-title").textContent =
+    `Review Patchset (${n}); ${total} comment${total === 1 ? "" : "s"}`;
 }
 
 function renderNav() {