-
-
Notifications
You must be signed in to change notification settings - Fork 79.1k
Mission Control: docs links navigate to 127.0.0.1:4317 instead of docs.openclaw.ai #89465
Copy link
Copy link
Labels
P2Normal backlog priority with limited blast radius.Normal backlog priority with limited blast radius.clawsweeper:fix-shape-clearClawSweeper found a clear likely implementation shape for this issue.ClawSweeper found a clear likely implementation shape for this issue.clawsweeper:queueable-fixClawSweeper marked this issue as an existing queue_fix_pr work candidate.ClawSweeper marked this issue as an existing queue_fix_pr work candidate.clawsweeper:source-reproClawSweeper found a high-confidence source-level issue reproduction.ClawSweeper found a high-confidence source-level issue reproduction.impact:otherThis issue has meaningful maintainer-visible impact outside the owned taxonomy.This issue has meaningful maintainer-visible impact outside the owned taxonomy.issue-rating: 🦞 diamond lobsterVery strong issue quality with high-confidence source-level or clear reproduction.Very strong issue quality with high-confidence source-level or clear reproduction.
Metadata
Metadata
Assignees
Labels
P2Normal backlog priority with limited blast radius.Normal backlog priority with limited blast radius.clawsweeper:fix-shape-clearClawSweeper found a clear likely implementation shape for this issue.ClawSweeper found a clear likely implementation shape for this issue.clawsweeper:queueable-fixClawSweeper marked this issue as an existing queue_fix_pr work candidate.ClawSweeper marked this issue as an existing queue_fix_pr work candidate.clawsweeper:source-reproClawSweeper found a high-confidence source-level issue reproduction.ClawSweeper found a high-confidence source-level issue reproduction.impact:otherThis issue has meaningful maintainer-visible impact outside the owned taxonomy.This issue has meaningful maintainer-visible impact outside the owned taxonomy.issue-rating: 🦞 diamond lobsterVery strong issue quality with high-confidence source-level or clear reproduction.Very strong issue quality with high-confidence source-level or clear reproduction.
Type
Fields
Give feedbackNo fields configured for issues without a type.
Summary
In Mission Control, links to OpenClaw documentation (e.g. "Workspace concept", "Agent workspace", and various inline
[link](/concepts/...)references throughout the UI) navigate to127.0.0.1:4317/...instead ofhttps://docs.openclaw.ai/.... Port 4317 has no docs server running, so the browser shows a generic 404 ("This page could not be found").Environment
27ae826)127.0.0.1:18789, loopbackSteps to reproduce
http://127.0.0.1:18789/[Workspace concept](/concepts/agent-workspace), or sidebar concept linksExpected
The link opens the relevant docs page on
https://docs.openclaw.ai/concepts/agent-workspace(in a new tab is fine).Actual
Browser navigates to
http://127.0.0.1:4317/concepts/agent-workspaceand renders a 404 page. The host:port has no service listening.Root cause guess
Doc links are treated as same-origin relative URLs and resolved against the current dev-server origin (which happens to land on 4317 in some build configs, or the bundled UI hardcoded
127.0.0.1:4317). The intended target is the public docs hostdocs.openclaw.ai.Workaround
Manually edit the URL in the browser bar: replace
127.0.0.1:4317withdocs.openclaw.aiand reload.Notes
https://docs.openclaw.ai, or to serve the docs locally at the configured port.