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
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
3 changed files with 5 additions and 5 deletions

View file

@ -34,7 +34,7 @@
const uriHashes = window.qBittorrent.Misc.safeTrim(new URI().getData("hashes"));
if (uriAction === "create")
$("legendText").innerText = "QBT_TR(Tag:)QBT_TR[CONTEXT=TagFilterWidget]";
$("legendText").textContent = "QBT_TR(Tag:)QBT_TR[CONTEXT=TagFilterWidget]";
$("tagName").focus();

View file

@ -187,7 +187,7 @@ window.qBittorrent.PropTrackers ??= (() => {
if (current_hash.length === 0)
return;
const trackerUrl = encodeURIComponent(element.childNodes[1].innerText);
const trackerUrl = encodeURIComponent(element.childNodes[1].textContent);
new MochaUI.Window({
id: "trackersPage",
title: "QBT_TR(Tracker editing)QBT_TR[CONTEXT=TrackerListWidget]",

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;