We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a965fdc commit 44a46d7Copy full SHA for 44a46d7
1 file changed
src/layouts/partials/property-nested-internal.hbs
@@ -1,16 +1,20 @@
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 indentationOffset=" "}}
+ {{> deprecated-warning}}
+{{/if}}
+{{#if enumValues}}
+<details>
+ <summary>Enum values:</summary>
12
+ {{#each enumValues}}
13
+ - `{{this}}`
14
+ {{/each}}
15
+</details>
16
17
{{#if value}}
18
19
Value: `{{value}}`
20
0 commit comments