From 6bbedbea8a5e273205800ae98df22053703ccbf9 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sun, 6 Oct 2024 16:54:42 +0800 Subject: [PATCH] WebUI: remove unused variable PR #21500. --- src/webui/www/private/views/rss.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webui/www/private/views/rss.html b/src/webui/www/private/views/rss.html index 6d39eb16e..2c77959a7 100644 --- a/src/webui/www/private/views/rss.html +++ b/src/webui/www/private/views/rss.html @@ -784,11 +784,11 @@ } // find selected row - let rowId, prevUnreadCount; + let prevUnreadCount; for (const row of rssFeedTable.getRowValues()) { if (row.full_data.dataPath === path) { - rowId = row.full_data.rowId; prevUnreadCount = row.full_data.unread; + break; } }