WebUI: use the correct property for accessing text

In these instances we don't need the rendered result. So use the most efficient
property to access it: `.textContent`.
This commit is contained in:
Chocobo1
2024-07-15 17:06:48 +08:00
parent adde3c3f65
commit 25dd6c72f7
3 changed files with 5 additions and 5 deletions

View File

@@ -401,7 +401,7 @@
if (article) {
$("rssDetailsView").append((() => {
const torrentName = document.createElement("p");
torrentName.innerText = article.title;
torrentName.textContent = article.title;
torrentName.id = "rssTorrentDetailsName";
return torrentName;
})());
@@ -410,11 +410,11 @@
torrentDate.id = "rssTorrentDetailsDate";
const torrentDateDesc = document.createElement("b");
torrentDateDesc.innerText = "QBT_TR(Date: )QBT_TR[CONTEXT=RSSWidget]";
torrentDateDesc.textContent = "QBT_TR(Date: )QBT_TR[CONTEXT=RSSWidget]";
torrentDate.append(torrentDateDesc);
const torrentDateData = document.createElement("span");
torrentDateData.innerText = new Date(article.date).toLocaleString();
torrentDateData.textContent = new Date(article.date).toLocaleString();
torrentDate.append(torrentDateData);
return torrentDate;