[fix](trx-frontend-http): always list rig-specific and general bookmarks together

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-03-24 21:05:47 +01:00
parent e52d276198
commit 68449425be
@@ -48,6 +48,12 @@ function bmSyncAccess() {
if (selectAllBtn) selectAllBtn.style.display = canCtrl ? "" : "none";
}
/** The listing scope: always the active rig (to merge general + rig bookmarks). */
function bmListScope() {
const rig = (typeof lastActiveRigId !== "undefined") ? lastActiveRigId : null;
return rig || "general";
}
async function bmFetch(categoryFilter) {
let url = "/bookmarks";
let hasQuery = false;
@@ -55,7 +61,7 @@ async function bmFetch(categoryFilter) {
url += "?category=" + encodeURIComponent(categoryFilter);
hasQuery = true;
}
url += bmScopeParam(hasQuery);
url += bmScopeParam(hasQuery, bmListScope());
try {
const resp = await fetch(url);
if (!resp.ok) throw new Error("HTTP " + resp.status);
@@ -100,7 +106,7 @@ async function bmRefreshCategoryFilter(keepValue) {
const modeSel = document.getElementById("bm-mode-filter");
if (!sel && !modeSel) return;
try {
const resp = await fetch("/bookmarks" + bmScopeParam(false));
const resp = await fetch("/bookmarks" + bmScopeParam(false, bmListScope()));
if (!resp.ok) return;
const all = await resp.json();
if (sel) {