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 90b463f83ae1a41f65c4061f109c495be16193d2
parent 7c437ccaa58123c9eee1c2a6027953db6cce34cd
Author: Pi Agent <agent@pi.local>
Date:   Sat, 18 Jul 2026 22:35:25 +0200

review: fix dropped comment line that shadowed renderSeriesTitle

A line of the doc comment had lost its leading //, so the stray text was
parsed as top-level statements outside renderSeriesTitle; the title never
rendered and the top bar stayed at "Review". Restore the comment marker.

Diffstat:
Mextension/review/review.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/extension/review/review.js b/extension/review/review.js
@@ -73,7 +73,7 @@ async function init() {
 // Rendering
 
 // The top-left title summarises the whole series under review: the patch
-count and the total draft comments across it. Updated on init, on patch
+// count and the total draft comments across it. Updated on init, on patch
 // switch, and whenever comments change.
 function renderSeriesTitle() {
   if (!state.series.length) {