Adjust style of results and top bar

This commit is contained in:
2026-02-02 15:20:13 +01:00
parent ed855a504f
commit 989beb62c5
3 changed files with 12 additions and 26 deletions

View File

@@ -132,7 +132,7 @@ async function loadResults() {
function renderPhasePill() {
const phaseKey = typeof state.phase === "string" ? state.phase.toLowerCase() : null;
$("phase-pill").textContent = phaseKey ? t(`phase.${phaseKey}`) : t("phase.loading");
$("phase-pill").textContent = phaseKey ? "" : t("phase.loading");
document.querySelectorAll(".phase-view").forEach((el) => el.classList.add("hidden"));
const viewMap = {
Suggest: "suggest-view",