We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad3f6ee commit b69d92dCopy full SHA for b69d92d
1 file changed
src/docs.ts
@@ -137,7 +137,7 @@ export class Docs {
137
const topLevelTopic = commandParts[0];
138
139
const plugin = command.plugin;
140
- if (this.plugins[plugin.name]) {
+ if (plugin && this.plugins[plugin.name]) {
141
// Also include the namespace on the commands so we don't need to do the split at other times in the code.
142
command.topic = topLevelTopic;
143
0 commit comments