[fix](trx-frontend): tighten bookmark and map filter overflow

Co-authored-by: OpenAI Codex <codex@openai.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-03-04 18:55:26 +01:00
parent 046d0a33af
commit d1968bd2ba
2 changed files with 4 additions and 14 deletions
@@ -3303,9 +3303,7 @@ function renderMapLocatorChipRow(container, items, selectedSet, kind) {
btn.dataset.filterKind = kind;
btn.dataset.filterKey = item.key;
btn.style.setProperty("--chip-color", item.color);
btn.innerHTML = item.kind === "band"
? `<span class="map-locator-chip-band">${escapeMapHtml(item.label)}</span>`
: `<span class="map-locator-chip-text">${escapeMapHtml(item.label)}</span>`;
btn.innerHTML = `<span class="map-locator-chip-text">${escapeMapHtml(item.label)}</span>`;
container.appendChild(btn);
}
if (helperText) {