发布

  • [OPIK-6078] [FE] fix: pass troubleshooting hash as second arg to buildDocsUrl (#6381)

    frostbyte_neo 发布于 2026-04-20 12:17:11 +00:00

    Onboarding CTAs linking to the docs Troubleshooting section embedded the
    hash inside the path argument (e.g. buildDocsUrl("/faq#troubleshooting")).
    Because buildDocsUrl appends ?from=llm after the path, the resulting URL
    became .../faq#troubleshooting?from=llm — the browser treated the whole
    suffix as the fragment, so the anchor never resolved and the page did
    not scroll to the Troubleshooting section.

    Pass the hash via the dedicated second argument in all three callers so
    the URL is built as .../faq?from=llm#troubleshooting and the anchor
    resolves correctly.

    Implements OPIK-6078: [DOCS] fix: Troubleshooting anchor link on FAQ page does not scroll to section

    下载附件