Skip to content

Commit f28711e

Browse files
committed
uncomment line preventing grouping by operation tags (#764)
1 parent 748e42c commit f28711e

File tree

1 file changed

+1
-1
lines changed
  • packages/docusaurus-plugin-openapi-docs/src/sidebars

1 file changed

+1
-1
lines changed

packages/docusaurus-plugin-openapi-docs/src/sidebars/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function groupByTags(
8787
apiTags.push(tag.name!);
8888
}
8989
});
90-
// apiTags = uniq(apiTags.concat(operationTags));
90+
apiTags = uniq(apiTags.concat(operationTags));
9191

9292
const basePath = docPath
9393
? outputDir.split(docPath!)[1].replace(/^\/+/g, "")

0 commit comments

Comments
 (0)