From 6235b875614d50670f808a09a27aebee7c901c34 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Tue, 12 Aug 2025 19:48:46 +0200 Subject: [PATCH] fix doubled colons --- static/webui/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/webui/script.js b/static/webui/script.js index e0162266..4f995de8 100644 --- a/static/webui/script.js +++ b/static/webui/script.js @@ -208,7 +208,7 @@ function updateLocElements() { .split("|") .map(key => loc(key)) .join(", "); - elm.title = `${loc("worldState_incompatibleWith")}: ${incWith}`; + elm.title = `${loc("worldState_incompatibleWith")} ${incWith}`; }); document.querySelectorAll("[data-loc-year]").forEach(elm => { elm.innerHTML = elm.innerHTML.replace("|YEAR|", elm.getAttribute("data-loc-year"));