From 8627058ff76842ad93f33064b13659d4e2c6a9e9 Mon Sep 17 00:00:00 2001 From: "Stiliyan Tonev (Bark)" Date: Mon, 31 Mar 2025 11:44:26 +0300 Subject: [PATCH] fix: use template instead of string concat, as suggested by linters. --- src/webui/www/private/scripts/dynamicTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/www/private/scripts/dynamicTable.js b/src/webui/www/private/scripts/dynamicTable.js index 5692d2b7e..4d84d8ee3 100644 --- a/src/webui/www/private/scripts/dynamicTable.js +++ b/src/webui/www/private/scripts/dynamicTable.js @@ -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; };