WebUI: remove unused variable

PR #21500.
This commit is contained in:
Chocobo1
2024-10-06 16:54:42 +08:00
committed by GitHub
parent 56a0692b68
commit 6bbedbea8a

View File

@@ -784,11 +784,11 @@
} }
// find selected row // find selected row
let rowId, prevUnreadCount; let prevUnreadCount;
for (const row of rssFeedTable.getRowValues()) { for (const row of rssFeedTable.getRowValues()) {
if (row.full_data.dataPath === path) { if (row.full_data.dataPath === path) {
rowId = row.full_data.rowId;
prevUnreadCount = row.full_data.unread; prevUnreadCount = row.full_data.unread;
break;
} }
} }