thunderbird-patch-review

Simple email patch review tool for Thunderbird

git clone git://mccd.space/thunderbird-patch-review
commit ec578bb2ffd0b56819baa218447e47a0575922b2
parent 311a4a6314711fdd8d6f64210ad8c013ebe23e30
Author: Marc <marc@coquand.email>
Date:   Sun, 19 Jul 2026 11:44:02 +0200

Cross should be before, not after

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
@@ -666,7 +666,7 @@ async function refreshApplyState() {
   } else if (state.applyStatus === "conflict") {
     apply.classList.add("state-conflict");
     apply.disabled = true;
-    apply.textContent = "Apply ✖";
+    apply.textContent = "✖ Apply";
     apply.title =
       "This series does not apply cleanly to the repository.\n\n" +
       (response.output || "(no detail)");