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.
2 parents 3b86f3b + 621b351 commit 5bdb91cCopy full SHA for 5bdb91c
src/components/2_molecules/BodySchema.js
@@ -2,6 +2,7 @@ import { getOr } from "lodash/fp";
2
import React from "react";
3
import Markdown from "react-markdown/with-html";
4
5
+import Enum from "./Enum";
6
import Filterable from "./Filterable";
7
import Nullable from "./Nullable";
8
import SubResponse from "./SubResponse";
@@ -97,6 +98,7 @@ export const BodySchema = props => {
97
98
<span className="tag tag-deprecated">Deprecated</span>
99
</div>
100
)}
101
+ {b.enum && <Enum dataSource={b} />}
102
<Markdown
103
source={b.description}
104
escapeHtml={false}
0 commit comments