mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 05:43:32 -07:00
fix: use template instead of string concat, as suggested by linters.
This commit is contained in:
parent
91b4c0596a
commit
8627058ff7
1 changed files with 1 additions and 1 deletions
|
@ -1563,7 +1563,7 @@ window.qBittorrent.DynamicTable ??= (() => {
|
|||
td.title = "QBT_TR(N/A)QBT_TR[CONTEXT=TrackerListWidget]";
|
||||
return;
|
||||
}
|
||||
const value = window.qBittorrent.Misc.toFixedPointString(this.getRowValue(row), 2) + "%";
|
||||
const value = `${window.qBittorrent.Misc.toFixedPointString(this.getRowValue(row), 2) }%`;
|
||||
td.textContent = value;
|
||||
td.title = value;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue