mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-04 22:52:33 -06:00
WebUI: enforce coding style
Actually, not all of them but some that can be enforced by eslint. The changes are made by eslint with minor manual tweaking. PR #17046.
This commit is contained in:
@@ -227,7 +227,7 @@
|
||||
.filter((row) => row.full_data.dataUid !== '')
|
||||
.each((row) => feedsToUpdate.add(row));
|
||||
});
|
||||
feedsToUpdate.forEach((feed) => refreshFeed(feed.full_data.dataUid))
|
||||
feedsToUpdate.forEach((feed) => refreshFeed(feed.full_data.dataUid));
|
||||
},
|
||||
markRead: markSelectedAsRead,
|
||||
rename: (el) => {
|
||||
@@ -307,11 +307,11 @@
|
||||
|
||||
const unload = () => {
|
||||
clearInterval(feedRefreshTimer);
|
||||
}
|
||||
};
|
||||
|
||||
const load = () => {
|
||||
feedRefreshTimer = setInterval(updateRssFeedList, serverSyncRssDataInterval);
|
||||
}
|
||||
};
|
||||
|
||||
const addRSSFeed = () => {
|
||||
let path = '';
|
||||
@@ -365,7 +365,7 @@
|
||||
width: 350,
|
||||
height: 100
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
const showRssFeed = (path) => {
|
||||
rssArticleTable.clear();
|
||||
|
||||
Reference in New Issue
Block a user