Web: Set a fixed height for Tabulator tables.

It's ugly but couldn't find a way to make it responsive and not break
the Virtual DOM.
This commit is contained in:
Pablo Vazquez 2022-05-12 15:51:03 +02:00
parent abed318500
commit d0d40c8e46
2 changed files with 2 additions and 1 deletions

View File

@ -54,6 +54,7 @@ export default {
initialSort: [
{ column: "updated", dir: "desc" },
],
height: "720px", // 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 job is tracked by click events, not row selection.
};

View File

@ -54,7 +54,7 @@ export default {
initialSort: [
{ column: "updated", dir: "desc" },
],
height: "300px",
height: "300px", // 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 task is tracked by click events.
};