[pdm-devel] [PATCH datacenter-manager v3 08/21] ui: dashboard: task summary: disable virtual scrolling
Dominik Csapak
d.csapak at proxmox.com
Fri Oct 31 13:43:51 CET 2025
this, together with hiding the headers, changes the layout mechanism
internal to the datatable, which can be necessary in the dashboards flex
layout.
Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
ui/src/dashboard/tasks.rs | 3 +++
1 file changed, 3 insertions(+)
diff --git a/ui/src/dashboard/tasks.rs b/ui/src/dashboard/tasks.rs
index cdb0d9c6..da447ecd 100644
--- a/ui/src/dashboard/tasks.rs
+++ b/ui/src/dashboard/tasks.rs
@@ -294,6 +294,9 @@ impl Component for ProxmoxTaskSummary {
.striped(false)
.borderless(true)
.hover(true)
+ // these change the layout logic, which is necessary for the dashboards flex
+ // layout
+ .virtual_scroll(false)
.show_header(false),
)
.with_optional_child(tasks)
--
2.47.3
More information about the pdm-devel
mailing list