diff options
author | moisseev <moiseev@mezonplus.ru> | 2022-06-29 17:52:57 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2022-06-29 17:54:54 +0300 |
commit | e4446ad2c2a75154025d7d96a9195aa8c7108725 (patch) | |
tree | 32f1aa17e4d0b11a6b6a1daae6af7f605234385e /interface/js | |
parent | 508f8da2f6597aa76d779bd0f66f0bc4205c9c5e (diff) | |
download | rspamd-e4446ad2c2a75154025d7d96a9195aa8c7108725.tar.gz rspamd-e4446ad2c2a75154025d7d96a9195aa8c7108725.zip |
[WebUI] Tweak history table layout
Diffstat (limited to 'interface/js')
-rw-r--r-- | interface/js/app/history.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js index e6573cd1e..7409be597 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -132,7 +132,9 @@ define(["jquery", "footable"], title: "Score", style: { "font-size": "11px", - "maxWidth": 110 + "maxWidth": 110, + "text-align": "right", + "white-space": "nowrap" }, sortValue: function (val) { return Number(val.options.sortValue); } }, { @@ -172,6 +174,7 @@ define(["jquery", "footable"], }, sortValue: function (val) { return Number(val); } }, { + classes: "history-col-time", sorted: true, direction: "DESC", name: "time", |