From 731b1b37c6a43184ec785311c4737479695a2190 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sun, 14 Dec 2025 11:41:21 +0100 Subject: [PATCH] also check len of put --- modules/web.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/web.html b/modules/web.html index 3ad32f8..3530330 100644 --- a/modules/web.html +++ b/modules/web.html @@ -284,7 +284,7 @@ li.classList.add("current"); currentIndex = i; } - if(currentIndex+1 === i && skipNext) { + if(currentIndex+1 === i && skipNext && putQueue.length === 0) { li.style.textDecoration = "line-through"; } ul.appendChild(li);