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.
This commit is contained in:
Sybren A. Stüvel 2022-06-03 13:02:23 +02:00
parent 375a6666c2
commit b41feee313

View File

@ -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.
};