diff options
author | moisseev <moiseev@mezonplus.ru> | 2023-12-28 14:31:49 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2023-12-28 14:31:49 +0300 |
commit | f0ecc1fe07c4c04a2920c0435a0211e912a81959 (patch) | |
tree | 319a3c51f9c5bca226d9f83c3bda95b75a92ef83 /interface/js/app/upload.js | |
parent | 01a0df9f25cee9e56294aea179e6a4e5f1b9c09a (diff) | |
download | rspamd-f0ecc1fe07c4c04a2920c0435a0211e912a81959.tar.gz rspamd-f0ecc1fe07c4c04a2920c0435a0211e912a81959.zip |
[WebUI] Tweak scan result layout for small devices
Diffstat (limited to 'interface/js/app/upload.js')
-rw-r--r-- | interface/js/app/upload.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/interface/js/app/upload.js b/interface/js/app/upload.js index 086c6025e..e5ddb1c84 100644 --- a/interface/js/app/upload.js +++ b/interface/js/app/upload.js @@ -90,7 +90,8 @@ define(["jquery", "app/common", "app/libft"], style: {minwidth: 82} }, { name: "passthrough_module", - title: '<div title="The module that has set the pre-result">Pass-through module</div>' + title: '<div title="The module that has set the pre-result">Pass-through module</div>', + breakpoints: "xs sm md" }, { name: "score", title: "Score", @@ -119,6 +120,7 @@ define(["jquery", "app/common", "app/libft"], style: {maxWidth: 72}, sortValue: function (val) { return Number(val); } }, { + classes: "history-col-time", sorted: true, direction: "DESC", name: "time", |