[pdm-devel] [PATCH datacenter-manager] ui: add wizard: note that login currently only works for PBS 4

Christian Ebner c.ebner at proxmox.com
Fri Sep 26 17:26:39 CEST 2025


Due to an incompatibility, the login currently only works with the
PBS 4 API, logins to PBS 3 will fail with 401 error code.

Adds an information to the remote add settings page until the
underlying issue has been diagnosed and fixed, so users are made
aware of this.

Signed-off-by: Christian Ebner <c.ebner at proxmox.com>
---
 ui/src/remotes/wizard_page_info.rs | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/ui/src/remotes/wizard_page_info.rs b/ui/src/remotes/wizard_page_info.rs
index 7fffdd1..959764f 100644
--- a/ui/src/remotes/wizard_page_info.rs
+++ b/ui/src/remotes/wizard_page_info.rs
@@ -379,6 +379,21 @@ impl Component for PdmWizardPageInfo {
         let content = Column::new()
             .class(FlexFit)
             .with_child(Row::new().with_child(input_panel))
+            .with_child(
+                Row::new()
+                    .padding(2)
+                    .gap(2)
+                    .class(css::AlignItems::Center)
+                    .with_optional_child(
+                        if props.remote_type == RemoteType::Pbs && self.user_mode {
+                            Some(tr!(
+                                "Note: Login currently requires Proxmox Backup Sever version 4"
+                            ))
+                        } else {
+                            None
+                        },
+                    ),
+            )
             .with_child(
                 Row::new()
                     .padding(2)
-- 
2.47.3





More information about the pdm-devel mailing list