From b41feee313dccbcf3e9e187933436bbfd3a13a83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 3 Jun 2022 13:02:23 +0200 Subject: [PATCH] Web: reduce workers table height The 720px was almost filling up the entire height, making it hard to add anything new at the top. Soon it should be auto-resizing anyway, making this less relevant. --- web/app/src/components/workers/WorkersTable.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/src/components/workers/WorkersTable.vue b/web/app/src/components/workers/WorkersTable.vue index 4033e750..0091ac45 100644 --- a/web/app/src/components/workers/WorkersTable.vue +++ b/web/app/src/components/workers/WorkersTable.vue @@ -67,7 +67,7 @@ export default { initialSort: [ { column: "nickname", dir: "asc" }, ], - height: "720px", // Must be set in order for the virtual DOM to function correctly. + height: "360px", // Must be set in order for the virtual DOM to function correctly. data: [], // Will be filled via a Flamenco API request. selectable: false, // The active worker is tracked by click events, not row selection. };