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 42e6a4f commit 251e377Copy full SHA for 251e377
packages/docusaurus-plugin-openapi-docs/src/markdown/createSchema.ts
@@ -789,13 +789,13 @@ export function createNodes(
789
790
for (const label of circularItems) {
791
nodes.push(
792
- create("div", {
793
- style: {
794
- marginTop: ".5rem",
795
- marginBottom: ".5rem",
796
- marginLeft: "1rem",
797
- },
798
- children: createDescription(label as string),
+ create("SchemaItem", {
+ collapsible: false,
+ name: "",
+ required: false,
+ schemaName: label,
+ qualifierMessage: undefined,
+ schema: {},
799
})
800
);
801
}
0 commit comments