docs: fix broken dashboard image on i18n pages#38031
Conversation
The dashboard screenshot uses a relative path `src="whatsapp-openclaw.jpg"` which resolves correctly on the English root page but produces 404 on zh-CN and ja-JP pages because Mintlify prepends the language subdirectory to the CDN path. Change to absolute path `/whatsapp-openclaw.jpg` in all three index files, consistent with other images on the same page that already use absolute paths (e.g. `/assets/openclaw-logo-text-dark.png`).
Greptile SummaryThis PR fixes broken dashboard images on the i18n (
Confidence Score: 5/5
Last reviewed commit: 7decfb2 |
|
Thank you @angrybirddd, Confirmed it was broken, and will be fixed with your changes: Please attach screenshots to these type of PRs if you can in the future. Cheers! |
* main: fix: add no-ci-pr auto-response label docs: add changelog entry for Feishu timeouts (openclaw#38356) fix(feishu): remove invalid timeout properties from SDK method calls (openclaw#38267) docs: fix broken dashboard image on i18n pages (openclaw#38031)
The dashboard screenshot uses a relative path `src="whatsapp-openclaw.jpg"` which resolves correctly on the English root page but produces 404 on zh-CN and ja-JP pages because Mintlify prepends the language subdirectory to the CDN path. Change to absolute path `/whatsapp-openclaw.jpg` in all three index files, consistent with other images on the same page that already use absolute paths (e.g. `/assets/openclaw-logo-text-dark.png`).
The dashboard screenshot uses a relative path `src="whatsapp-openclaw.jpg"` which resolves correctly on the English root page but produces 404 on zh-CN and ja-JP pages because Mintlify prepends the language subdirectory to the CDN path. Change to absolute path `/whatsapp-openclaw.jpg` in all three index files, consistent with other images on the same page that already use absolute paths (e.g. `/assets/openclaw-logo-text-dark.png`).
The dashboard screenshot uses a relative path `src="whatsapp-openclaw.jpg"` which resolves correctly on the English root page but produces 404 on zh-CN and ja-JP pages because Mintlify prepends the language subdirectory to the CDN path. Change to absolute path `/whatsapp-openclaw.jpg` in all three index files, consistent with other images on the same page that already use absolute paths (e.g. `/assets/openclaw-logo-text-dark.png`).
|
Hi @altaywtf ,
BTW: I created a new PR. A very small change: #42297 |
The dashboard screenshot uses a relative path `src="whatsapp-openclaw.jpg"` which resolves correctly on the English root page but produces 404 on zh-CN and ja-JP pages because Mintlify prepends the language subdirectory to the CDN path. Change to absolute path `/whatsapp-openclaw.jpg` in all three index files, consistent with other images on the same page that already use absolute paths (e.g. `/assets/openclaw-logo-text-dark.png`).
The dashboard screenshot uses a relative path `src="whatsapp-openclaw.jpg"` which resolves correctly on the English root page but produces 404 on zh-CN and ja-JP pages because Mintlify prepends the language subdirectory to the CDN path. Change to absolute path `/whatsapp-openclaw.jpg` in all three index files, consistent with other images on the same page that already use absolute paths (e.g. `/assets/openclaw-logo-text-dark.png`).
The dashboard screenshot uses a relative path `src="whatsapp-openclaw.jpg"` which resolves correctly on the English root page but produces 404 on zh-CN and ja-JP pages because Mintlify prepends the language subdirectory to the CDN path. Change to absolute path `/whatsapp-openclaw.jpg` in all three index files, consistent with other images on the same page that already use absolute paths (e.g. `/assets/openclaw-logo-text-dark.png`).

Summary
src="whatsapp-openclaw.jpg"which 404s on zh-CN and ja-JP pages because Mintlify prepends the locale subdirectory to the CDN path./whatsapp-openclaw.jpgin all three locale index files.Change Type (select all)
Scope (select all touched areas)
Linked Issue/PR
None — discovered during docs review.
User-visible / Behavior Changes
Dashboard screenshot now renders correctly on zh-CN and ja-JP landing pages.
Security Impact (required)
Repro + Verification
Steps
https://docs.openclaw.ai/zh-CN(or ja-JP)Evidence
Before (zh-CN): image broken (relative path resolves to
/zh-CN/whatsapp-openclaw.jpg→ 404)After (zh-CN): image loads (
/whatsapp-openclaw.jpg→ 200)Human Verification (required)
/assets/openclaw-logo-text-dark.png), confirming this is the intended pattern.Compatibility / Migration
Failure Recovery (if this breaks)
docs/index.md,docs/zh-CN/index.md,docs/ja-JP/index.mdRisks and Mitigations
None.