From dd7b8f133c8737325ec839e6284f4d03a39610eb Mon Sep 17 00:00:00 2001 From: Alex Blank Date: Thu, 7 May 2026 18:58:38 +0200 Subject: [PATCH] fixes and improvements --- frontend/src/pages/Settings.tsx | 46 ++++++++++++++++++++++++++++----- 1 file changed, 39 insertions(+), 7 deletions(-) diff --git a/frontend/src/pages/Settings.tsx b/frontend/src/pages/Settings.tsx index 7e49b4a..1703b37 100644 --- a/frontend/src/pages/Settings.tsx +++ b/frontend/src/pages/Settings.tsx @@ -81,6 +81,7 @@ function MachineEditor({ isValidatingSSH, sshValidationMessage, sshValidationError, + sshValidationStatus, }: { title: string; hint?: string; @@ -95,6 +96,7 @@ function MachineEditor({ isValidatingSSH: boolean; sshValidationMessage: string; sshValidationError: string; + sshValidationStatus: string; }) { const draft = machine; const setDraft = onChange; @@ -429,10 +431,15 @@ function MachineEditor({ {!isLocal && ( - Validate SSH before saving: this records the first trusted host key - in the backend-managed known_hosts file, then checks SSH auth. + Validate SSH before saving: this records the first trusted host + key in the backend-managed known_hosts file, then checks SSH + auth. - +