diff options
author | moisseev <moiseev@mezonplus.ru> | 2023-12-07 17:49:08 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2023-12-07 17:49:08 +0300 |
commit | 9634c91031287db0efb4885e9e016049f4d34b08 (patch) | |
tree | afae3c07aa38b2ddddbd8dae07ffed797fa5483e /interface/js/app/stats.js | |
parent | 70bd8f78419df9a0f86037594dc5a9bc07282d97 (diff) | |
download | rspamd-9634c91031287db0efb4885e9e016049f4d34b08.tar.gz rspamd-9634c91031287db0efb4885e9e016049f4d34b08.zip |
[Test] Unbreak ESLint
Diffstat (limited to 'interface/js/app/stats.js')
-rw-r--r-- | interface/js/app/stats.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/interface/js/app/stats.js b/interface/js/app/stats.js index 3ee0a907a..ddf641d69 100644 --- a/interface/js/app/stats.js +++ b/interface/js/app/stats.js @@ -70,9 +70,9 @@ define(["jquery", "app/rspamd", "d3pie", "d3"], const c = (typeof cls === "undefined") ? "" : cls; const titleAtt = d3.format(",")(v) + " " + k; return '<div class="card stat-box d-inline-block text-center shadow-sm me-3 px-3">' + - '<div class="widget overflow-hidden p-2' + c + '" title="' + titleAtt + - '"><strong class="d-block mt-2 mb-1 fw-bold">' + - d3.format(".3~s")(v) + "</strong>" + k + "</div></div>"; + '<div class="widget overflow-hidden p-2' + c + '" title="' + titleAtt + + '"><strong class="d-block mt-2 mb-1 fw-bold">' + + d3.format(".3~s")(v) + "</strong>" + k + "</div></div>"; } if (i === "auth" || i === "error") return; // Skip to the next iteration |