docusaurus-plugin-typedoc-api icon indicating copy to clipboard operation
docusaurus-plugin-typedoc-api copied to clipboard

`VersionBanner` "cannot read properties of undefined"

Open audionerd opened this issue 1 year ago • 0 comments

I have the plugin configured for our project, but I'm getting this error from VersionBanner when I try to render any documentation page:

VersionBanner-bug

In our configuration, the latest and current docs are both at v5, whereas some Markdown docs are at v4. The API docs are per-package, with multiple packages, and none of them really need to be versioned (always showing API docs for only the latest version is probably fine).

The problem is this line: https://github.com/milesj/docusaurus-plugin-typedoc-api/blob/9169c0e9ab804e6cac5f915665e0efd041ab46f0/packages/plugin/src/components/VersionBanner.tsx#L20

Where latestVersion is

{name: 'current', label: 'XState v5', isLast: true, path: '/docs', mainDocId: 'about', …}

And docs is:

{
  4: {id: '/api', title: '4', description: '4'}
}

So docs['XState v5'] does not exist.

I'm using patch-package to bypass VersionBanner for now. Wondering if there's a simple fix for this I'm overlooking?

Project is here: https://github.com/statelyai/docs/pull/288

audionerd avatar Nov 29 '23 23:11 audionerd