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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
} }
} }