We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e960fd commit 0a8aafcCopy full SHA for 0a8aafc
packages/docusaurus-plugin-openapi-docs/src/sidebars/index.ts
@@ -93,7 +93,10 @@ function groupByTags(
93
apiTags.push(tag.name!);
94
}
95
});
96
- apiTags = uniq(apiTags.concat(operationTags, schemaTags));
+
97
+ if (sidebarOptions.groupPathsBy !== "tagGroup") {
98
+ apiTags = uniq(apiTags.concat(operationTags, schemaTags));
99
+ }
100
101
const basePath = docPath
102
? outputDir.split(docPath!)[1].replace(/^\/+/g, "")
0 commit comments