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 edb20d9c39202c895ebebb7fc5a8900cd1d95b81 parent 90b463f83ae1a41f65c4061f109c495be16193d2 Author: Pi Agent <agent@pi.local> Date: Sat, 18 Jul 2026 22:35:49 +0200 review: chip placeholder reads "Choose a repository…" instead of "no repository chosen" Diffstat:
| M | extension/review/review.html | | | 2 | +- |
| M | extension/review/review.js | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/extension/review/review.html b/extension/review/review.html
@@ -10,7 +10,7 @@
<div id="series-title">Review</div>
<div id="actions">
<div class="cluster" id="repo-cluster">
- <button id="repo-path" type="button" title="Click to choose the repository directory">no repository chosen</button>
+ <button id="repo-path" type="button" title="Click to choose the repository directory">Choose a repository…</button>
<div class="split" id="apply-split">
<button id="btn-apply" title="Apply the patches to the repository (git am)">Apply</button>
<button class="menu-toggle" title="Apply options">▾</button>
diff --git a/extension/review/review.js b/extension/review/review.js
@@ -691,7 +691,7 @@ async function refreshRepoDisplay(path) {
if (!path) {
state.repo = "";
chip.classList.remove("error");
- chip.textContent = "no repository chosen";
+ chip.textContent = "Choose a repository…";
return;
}
chip.classList.remove("error");