From 9044a31cc015c6c0263482648fa272f22b85ae22 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Thu, 21 May 2026 21:13:19 +0200 Subject: [PATCH] whoops --- modules/web/web.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/web/web.js b/modules/web/web.js index d149b59..891010a 100644 --- a/modules/web/web.js +++ b/modules/web/web.js @@ -229,9 +229,9 @@ function renderQueue() { ul.innerHTML = ""; queue.forEach(path => { const li = document.createElement("li"); + li.dataset.line = path; + var c = path.replace(basePath, ""); - li.dataset.line = c; - if(c.startsWith("!")) c = "(unofficial) " + c.slice(2) else c = "(official) " + c.slice(1) li.textContent = c;