mark unofficial on q

This commit is contained in:
2026-04-24 22:29:49 +02:00
parent 2e54369c1a
commit 0ffedaad51
+1 -1
View File
@@ -227,7 +227,7 @@ function renderQueue() {
ul.innerHTML = ""; ul.innerHTML = "";
queue.forEach(path => { queue.forEach(path => {
const li = document.createElement("li"); const li = document.createElement("li");
li.textContent = path.replace(basePath, "").slice(1); li.textContent = path.replace(basePath, "").replace("!", "(unofficial) ").slice(1);
if (skipCountToRender > 0) { if (skipCountToRender > 0) {
li.style.textDecoration = "line-through"; li.style.textDecoration = "line-through";
skipCountToRender--; skipCountToRender--;