[pdm-devel] [PATCH datacenter-manager 1/2] ui: remote wizard: fix width of settings panel

Dominik Csapak d.csapak at proxmox.com
Thu Sep 11 09:49:36 CEST 2025


the way we use a flex column layout and the properties of the input
panel do not work that well together for the width. by introducing
a row  that changes the flex direction changes the way the width works
and uses the full one here.

Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
 ui/src/remotes/wizard_page_info.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/remotes/wizard_page_info.rs b/ui/src/remotes/wizard_page_info.rs
index 88c6463..ff0e969 100644
--- a/ui/src/remotes/wizard_page_info.rs
+++ b/ui/src/remotes/wizard_page_info.rs
@@ -360,7 +360,7 @@ impl Component for PdmWizardPageInfo {
             );
         let content = Column::new()
             .class(FlexFit)
-            .with_child(input_panel)
+            .with_child(Row::new().with_child(input_panel))
             .with_child(
                 Row::new()
                     .padding(2)
-- 
2.47.3





More information about the pdm-devel mailing list