From 41059b128d17543d981b7f07bf005a0073e1dbea Mon Sep 17 00:00:00 2001 From: Claus Lohmar Date: Mon, 27 Jul 2026 10:44:04 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20add=20Clear=20button=20to=20all=20sessio?= =?UTF-8?q?n=20entries=20=E2=80=94=20resumable=20ones=20get=20Resume=20+?= =?UTF-8?q?=20Clear,=20stale=20get=20Clear=20only?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/templates/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/templates/index.html b/frontend/templates/index.html index 5669ecb..fc69292 100644 --- a/frontend/templates/index.html +++ b/frontend/templates/index.html @@ -111,9 +111,8 @@ async function loadSessions() { html += ''; if (s.resumable) { html += ''; - } else { - html += ''; } + html += ''; html += ''; } list.innerHTML = html;