From 4bdaeb73a6eb7c9ea44ace9d69e564d585e4041d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 12 May 2022 13:53:17 +0200 Subject: [PATCH] Web: set fixed height for the task table It looks rather ugly, and this should be addressed, but without the `height` option of Tabulator it won't be using the Virtual DOM and result in very slow browser performance. --- web/app/src/components/TasksTable.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/web/app/src/components/TasksTable.vue b/web/app/src/components/TasksTable.vue index 251dab95..34cb74fd 100644 --- a/web/app/src/components/TasksTable.vue +++ b/web/app/src/components/TasksTable.vue @@ -54,6 +54,7 @@ export default { initialSort: [ { column: "updated", dir: "desc" }, ], + height: "300px", data: [], // Will be filled via a Flamenco API request. selectable: false, // The active task is tracked by click events. };