Tighten request board layout

This commit is contained in:
Andraxion 2026-06-27 02:03:43 -04:00
parent db3e080640
commit 496df474b8
3 changed files with 622 additions and 672 deletions

View file

@ -454,7 +454,11 @@ function createLauncherRequestId() {
}
function normalizeLauncherRequestStatus(value) {
return String(value || "").trim().toLowerCase() === "active" ? "active" : "pending";
const normalized = String(value || "").trim().toLowerCase();
if (normalized === "active" || normalized === "implemented") {
return normalized;
}
return "pending";
}
function normalizeLauncherRequestTags(value) {