From 4c5062c1b60b1c18019c60dcd865f7038b65e5a3 Mon Sep 17 00:00:00 2001 From: Sascha Leib Date: Fri, 5 Sep 2025 23:11:37 +0200 Subject: [PATCH] Minor fix (4) --- script.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script.js b/script.js index 9ea7c6f..8dad6bd 100644 --- a/script.js +++ b/script.js @@ -1015,7 +1015,7 @@ BotMon.live = { listId = 'knownBots'; break; default: - console.warn('Unknwon list number.'); + console.warn('Unknown list number.'); } const details = makeElement('details', { @@ -1023,8 +1023,8 @@ BotMon.live = { 'data-loaded': false }); const title = details.appendChild(makeElement('summary')); - title.appendChild(makeElement('span', {'class':'title'}, '–')) - title.appendChild(makeElement('span', {'class':'counter'}, gCount)) + title.appendChild(makeElement('span', {'class':'title'}, listTitle)); + title.appendChild(makeElement('span', {'class':'counter'}, '–')); details.addEventListener("toggle", this._onDetailsToggle); parent.appendChild(details);