From f0ecc1fe07c4c04a2920c0435a0211e912a81959 Mon Sep 17 00:00:00 2001 From: moisseev Date: Thu, 28 Dec 2023 14:31:49 +0300 Subject: [PATCH] [WebUI] Tweak scan result layout for small devices --- interface/js/app/upload.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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: '
Pass-through module
' + title: '
Pass-through module
', + 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", -- 2.39.5