Tighten request board layout
This commit is contained in:
parent
db3e080640
commit
496df474b8
3 changed files with 622 additions and 672 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue