ui: place health row under remote picker and improve timeout message

This commit is contained in:
Peter Steinberger
2025-12-07 23:34:49 +01:00
parent 6f8fb561c6
commit 9d751e0c72
2 changed files with 7 additions and 1 deletions

View File

@@ -90,11 +90,13 @@ var body: some View {
Text("Remote over SSH").tag(AppState.ConnectionMode.remote)
}
.pickerStyle(.segmented)
.frame(width: 320)
.frame(width: 360)
if self.state.connectionMode == .remote {
self.remoteCard
}
self.healthRow
}
}