Skip to content

Commit 7c7cf0e

Browse files
author
Developer
committed
fix(welcome): add missing SSH i18n keys + vertical SSH host/port layout
- Add connectSshPanelTitle, connectSshSubtitleHermes/Openclaw/Ironclaw to en locale - These keys were already referenced by the component but missing from en/welcome.ts, causing raw key strings (welcome.connectSshPanelTitle) to display in the UI - Change .welcome-ssh-grid to flex-direction: column so SSH Host and Port stack vertically instead of side-by-side Fixes user-reported SSH panel display issues.
1 parent b249c1c commit 7c7cf0e

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

agent-desktop/src/renderer/src/assets/main.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -891,6 +891,7 @@ select:focus-visible {
891891

892892
.welcome-ssh-grid {
893893
display: flex;
894+
flex-direction: column;
894895
gap: 8px;
895896
}
896897

agent-desktop/src/shared/i18n/locales/en/welcome.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,15 @@ export default {
5050
// surface.
5151
connectRemoteSubtitleIronclaw:
5252
"Attach to a running {{runtime}} WASM-sandbox container gateway instead of installing locally. Use the published gateway port (default 3231) and the operator-facing /api/health surface.",
53+
// V2.10.77 — SSH panel title + subtitles (were missing, causing
54+
// raw i18n keys to display in the UI).
55+
connectSshPanelTitle: "Connect via SSH",
56+
connectSshSubtitleHermes:
57+
"Forward an existing {{runtime}} gateway over SSH without exposing the published port directly.",
58+
connectSshSubtitleOpenclaw:
59+
"Forward an existing {{runtime}} gateway over SSH. HTTP compatibility must be enabled on the remote gateway.",
60+
connectSshSubtitleIronclaw:
61+
"Forward an existing {{runtime}} gateway over SSH without exposing the published container port directly.",
5362
// V2.10.61 — rewritten to drop the false-promise "below" Docker
5463
// handoff reference (the panel was not actually rendered in
5564
// Welcome.tsx). The Docker Desktop attach panel is a clean

0 commit comments

Comments
 (0)