We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b47ac7 commit a965fdcCopy full SHA for a965fdc
1 file changed
src/layouts/partials/property-content.hbs
@@ -1,22 +1,25 @@
1
-{{#if isDeprecated}}
2
-
3
-{{> deprecated-warning}}
4
-{{/if}}
5
{{#if description}}
6
7
{{description}}
8
{{/if}}
9
-{{#if enumValues}}
+{{#if isDeprecated}}
10
11
-{{> enum-values}}
+{{> deprecated-warning}}
+{{/if}}
+{{#if enumValues}}
+<details>
+ <summary>Enum values:</summary>
12
+ {{#each enumValues}}
13
+ - `{{this}}`
14
+ {{/each}}
15
+</details>
16
-{{#if value}}
17
18
+{{#if value}}
19
Value: `{{value}}`
20
21
{{#if listProperties}}
22
{{#each listProperties}}
23
- {{> property-nested this}}
24
{{/each}}
25
0 commit comments